1
+ <template >
2
+ <main class =" layout layout-main" >
3
+ <div >
4
+ <h1 >Selfie dot</h1 >
5
+
6
+ <p class =" text-lg" >You found a special features page. This contains UI elements that are used in the project.</p >
7
+
8
+ <section >
9
+ <h2 >Features</h2 >
10
+ <p >This project is built with Nuxt 3, Nuxt Content, Nuxt UI and TailwindCSS.<br />Some of the features are:</p >
11
+ <ul class =" list-disc list-inside" >
12
+ <li >Write pages in Markdown</li >
13
+ <li >Use layouts in Markdown pages</li >
14
+ <li >Enjoy meta tag generation</li >
15
+ <li >Generated navigation from pages</li >
16
+ <li >Leverage TailwindCSS Typography</li >
17
+ <li >Switch between light & ; dark mode</li >
18
+ <li >Access 100,000 icons from 100+ icon sets</li >
19
+ <li >Highlight code blocks with Shiki</li >
20
+ <li >Create Vue components and use them in Markdown</li >
21
+ <li >Deploy on any Node or Static hosting: GH Pages, Vercel, Netlify, Heroku, etc.</li >
22
+ <li >Live edit on Nuxt Studio</li >
23
+ </ul >
24
+ </section >
25
+
26
+ <section >
27
+ <h2 >Cool Buttons</h2 >
28
+ <p >
29
+ You can use the button link component to create a button with an icon.
30
+ </p >
31
+ <p >
32
+ <OrganismsButtonLink
33
+ external
34
+ href =" "
35
+ icon =" carbon:flash"
36
+ >
37
+ Thunder !
38
+ </OrganismsButtonLink >
39
+
40
+ <OrganismsButtonLink
41
+ external
42
+ href =" "
43
+ icon =" carbon:rocket"
44
+ button-type =" purple"
45
+ >
46
+ Rockets baby
47
+ </OrganismsButtonLink >
48
+
49
+ <OrganismsButtonLink
50
+ external
51
+ href =" "
52
+ icon =" carbon:palm-tree"
53
+ button-type =" blue"
54
+ >
55
+ Palms up
56
+ </OrganismsButtonLink >
57
+
58
+ <OrganismsButtonLink
59
+ external
60
+ href =" "
61
+ icon =" carbon:bat"
62
+ >
63
+ Batman
64
+ </OrganismsButtonLink >
65
+ </p >
66
+ </section >
67
+
68
+ <section >
69
+ <h2 >Content</h2 >
70
+ <p >Interesting styling for content.</p >
71
+
72
+ <h3 >Markdown</h3 >
73
+ <div > <!-- TODO: content within a div like this should adhere to tighter spacing between child elements -->
74
+ <p >Open a terminal and run the following command:</p >
75
+ <OrganismsMarkdownBlock >bash npx nuxi init -t themes/content-wind my-website</OrganismsMarkdownBlock >
76
+ <p >Follow the instructions in the terminal and you are ready to go 🚀</p >
77
+ </div >
78
+ </section >
79
+
80
+ <footer class =" mt-12 text-center" >
81
+ <p >
82
+ Thanks for visiting
83
+ </p >
84
+ </footer >
85
+ </div >
86
+ </main >
87
+ </template >
88
+
89
+ <script setup lang="ts">
90
+ definePageMeta ({
91
+ layout: ' default'
92
+ })
93
+
94
+ useSeoMeta ({
95
+ title: ' Selfie dot' ,
96
+ description: ' Content you can read in less than 3-minutes.'
97
+ })
98
+ </script >
0 commit comments