Skip to content

Commit

Permalink
add block
Browse files Browse the repository at this point in the history
  • Loading branch information
VovaStelmashchuk committed Feb 2, 2025
1 parent 7150412 commit 18fce32
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 7 deletions.
8 changes: 5 additions & 3 deletions layouts/auth.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@

<nav class="lg:flex items-center space-x-6">
<a href="/home" class="text-lg hover:text-gray-500">Projects</a>
<a href="/queue/all" class="text-lg hover:text-gray-500"
>History</a
>
<a href="/queue/all" class="text-lg hover:text-gray-500">History</a>
<a href="/blog" class="text-lg hover:text-gray-500">Blog</a>
</nav>

<Avatar
Expand Down Expand Up @@ -45,6 +44,9 @@
>Terms and Conditions</a
>
</li>
<li class="mr-4 mb-2 lg:mb-0">
<a href="/blog" class="hover:underline">Blog</a>
</li>
</ul>
<p class="text-sm text-gray-400 mt-4 lg:mt-0 text-center lg:text-end">
© 2025 Vova Stelmashchuk. All rights reserved. Built with ♥ and open
Expand Down
4 changes: 4 additions & 0 deletions layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
>Get Started</a
>
<a href="#faq" class="text-lg hover:text-gray-500">FAQ</a>
<a href="/blog" class="text-lg hover:text-gray-500">Blog</a>
</nav>
<a
@click="loginDialog = true"
Expand Down Expand Up @@ -90,6 +91,9 @@
>Terms and Conditions</a
>
</li>
<li class="mr-4 mb-2 lg:mb-0">
<a href="/blog" class="hover:underline">Blog</a>
</li>
</ul>
<p class="text-sm text-gray-400 mt-4 lg:mt-0 text-center lg:text-end">
© 2025 Vova Stelmashchuk. All rights reserved. Built with ♥ and open
Expand Down
3 changes: 3 additions & 0 deletions layouts/doc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
>Terms and Conditions</a
>
</li>
<li class="mr-4 mb-2 lg:mb-0">
<a href="/blog" class="hover:underline">Blog</a>
</li>
</ul>
<p class="text-sm text-gray-400 mt-4 lg:mt-0 text-center lg:text-end">
© 2025 Vova Stelmashchuk. All rights reserved. Built with ♥ and open
Expand Down
43 changes: 39 additions & 4 deletions pages/blog.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,38 @@
<script setup>
import BlogEntry from "~/components/BlogEntry.vue";
</script>

<template>
<div class="space-y-8 text-gray-800">
<BlogEntry
title="Big update, #10, New page in project history"
datetime="2024-05-08"
date="Aug 09, 2024"
author="nest2d"
:sections="[
{
title: 'Feature',
content: [
'Implement auth by Google and Github',
'New design done my tailwindcss',
'Nested history page',
'All request for nesting saved in queue with persistance storage in MongoDB',
'More DXF tags support',
],
},
{
title: 'Tech task',
content: [
'New deploy by github actions',
'Remove S3 bucket for infrastructure, all content saved into MongoDB',
],
},
{
title: 'Next stages',
content: ['DXF parsing polygones'],
},
{
title: 'Thanks',
content: 'Thanks to Dexus for the great project of parsing DXF',
},
]"
/>
<BlogEntry
title="Big update, #9, My summer vacation (2)"
datetime="2024-05-08"
Expand Down Expand Up @@ -290,3 +319,9 @@ import BlogEntry from "~/components/BlogEntry.vue";
/>
</div>
</template>

<script setup>
definePageMeta({
layout: "doc",
});
</script>

0 comments on commit 18fce32

Please sign in to comment.