Skip to content

Commit

Permalink
feat: change blog to top page
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielcaiana committed Aug 6, 2023
1 parent 0d5c136 commit b8f374d
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,31 +80,6 @@ const social = [
</div>
</section>

<!-- Projects -->
<section>
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold">
<strong class="gradient-text">Projetos</strong> Recentes
</h2>

<nuxt-link to="/projects">
<span class="font-bold text-sm mr-2">Ver todos os projetos</span>
<Icon name="ph:arrow-right" />
</nuxt-link>
</div>

<div class="flex flex-col gap-[48px]">
<CardProject
v-for="{ name, description, url, stack } in dataProjects"
:key="name"
:title="name"
:description="description"
:url="url"
:stack="stack"
/>
</div>
</section>

<!-- Posts -->
<section>
<div class="flex justify-between items-center mb-6">
Expand All @@ -129,5 +104,30 @@ const social = [
/>
</div>
</section>

<!-- Projects -->
<section>
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold">
<strong class="gradient-text">Projetos</strong> Recentes
</h2>

<nuxt-link to="/projects">
<span class="font-bold text-sm mr-2">Ver todos os projetos</span>
<Icon name="ph:arrow-right" />
</nuxt-link>
</div>

<div class="flex flex-col gap-[48px]">
<CardProject
v-for="{ name, description, url, stack } in dataProjects"
:key="name"
:title="name"
:description="description"
:url="url"
:stack="stack"
/>
</div>
</section>
</main>
</template>

0 comments on commit b8f374d

Please sign in to comment.