Skip to content

Commit

Permalink
chore: sync style, retrigger content
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse1989pp committed Apr 5, 2024
1 parent de50e6e commit 4a1b3d0
Show file tree
Hide file tree
Showing 8 changed files with 2,783 additions and 300 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.md
2 changes: 1 addition & 1 deletion content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#footer
::div{class="flex align-items justify-center"}
::span{class="p-text-secondary"}
Last update March 13th 2024
Last update April 5th 2024
::
::
::
Expand Down
4 changes: 1 addition & 3 deletions layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,5 @@ const isDark = computed({
@click="isDark = !isDark"
/>
</div>
<div class="flex p-4 justify-center items-center min-h-screen">
<slot />
</div>
<slot />
</template>
53 changes: 0 additions & 53 deletions libs/content-layer/layouts/docs.vue

This file was deleted.

5 changes: 0 additions & 5 deletions libs/content-layer/pages/docs/[...slug].vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
<script setup lang="ts">
definePageMeta({
layout: "docs",
});
</script>
<template>
<NuxtLayout>
<ContentDoc />
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
},
"devDependencies": {
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/ui": "^2.14.2",
"@nuxt/ui": "^2.15.1",
"@nuxthq/studio": "^1.0.13",
"nuxt": "^3.10.3"
"nuxt": "^3.11.2"
}
}
50 changes: 26 additions & 24 deletions pages/[...slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,31 +17,33 @@ useHead({
</script>
<template>
<NuxtLayout>
<UCard class="w-full max-w-lg md:w-600px rounded-md">
<template #header>
<div class="flex items-center gap-2">
<UAvatar src="/avatar.jpeg" alt="Jesse Bakels" />
<span class="font-bold">Jesse Bakels</span>
</div>
</template>

<p>Frontend Developer @ Jumbo Supermarkten</p>
<div class="mt-4">
<UBadge
v-for="tag in tags"
:key="tag"
:label="tag"
color="primary"
variant="solid"
class="mr-2"
/>
</div>
<div class="flex p-4 justify-center items-center min-h-screen">
<UCard class="w-full max-w-lg md:w-600px rounded-md">
<template #header>
<div class="flex items-center gap-2">
<UAvatar src="/avatar.jpeg" alt="Jesse Bakels" />
<span class="font-bold">Jesse Bakels</span>
</div>
</template>

<template #footer>
<div class="flex align-items justify-center">
<span class="p-text-secondary">Last update March 13th 2024</span>
<p>Frontend Developer @ Jumbo Supermarkten</p>
<div class="mt-4">
<UBadge
v-for="tag in tags"
:key="tag"
:label="tag"
color="primary"
variant="solid"
class="mr-2"
/>
</div>
</template>
</UCard>

<template #footer>
<div class="flex align-items justify-center">
<span class="p-text-secondary">Last update April 5th 2024</span>
</div>
</template>
</UCard>
</div>
</NuxtLayout>
</template>
Loading

0 comments on commit 4a1b3d0

Please sign in to comment.