Skip to content

Commit 98ea82c

Browse files
committed
im cool -cam
1 parent 95c21b5 commit 98ea82c

File tree

7 files changed

+6536
-3046
lines changed

7 files changed

+6536
-3046
lines changed

content.config.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { defineContentConfig, defineCollection } from '@nuxt/content'
2+
3+
export default defineContentConfig({
4+
collections: {
5+
content: defineCollection({
6+
type: 'page',
7+
source: '**/*.md'
8+
})
9+
}
10+
})

content/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: "Blog post"
3+
---
4+
```code block```

layouts/default.vue

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,22 @@
99
<script lang="ts" setup>
1010
import AppHeader from "~/components/AppHeader.vue";
1111
</script>
12+
<style>
13+
body {
14+
cursor: none !important;
15+
}
16+
img:hover {
17+
cursor: none !important;
18+
}
19+
a:hover {
20+
cursor: none !important;
21+
}
22+
23+
NuxtLink:hover {
24+
cursor: none !important;
25+
}
26+
27+
.btn:hover {
28+
cursor: none !important;
29+
}
30+
</style>

nuxt.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ export default defineNuxtConfig({
1010
title: 'Jeffrey Mello',
1111
}
1212
},
13-
modules: ['@nuxtjs/tailwindcss'],
14-
css: ['~/assets/css/tailwind.css']
13+
modules: ['@nuxtjs/tailwindcss','@nuxt/content'],
14+
css: ['~/assets/css/tailwind.css'],
1515
})

0 commit comments

Comments
 (0)