-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.ts
More file actions
69 lines (68 loc) · 2.42 KB
/
Copy pathapp.config.ts
File metadata and controls
69 lines (68 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import {
ArrowPathIcon,
CloudArrowUpIcon,
FingerPrintIcon,
LockClosedIcon,
} from "@heroicons/vue/24/outline";
export default defineAppConfig({
title: "Nuxt Tailwind Kit",
description:
"Beautifully designed, fully featured, and ready to go starter kit for Nuxt 3 and Tailwind CSS.",
features: [
{
name: "Nuxt 3",
description:
"The latest and greatest version of Nuxt.js, with a new file system based routing system and a new way to write your components.",
icon: CloudArrowUpIcon,
},
{
name: "Tailwind CSS",
description:
"A utility-first CSS framework packed with classes that can be composed to build any design, directly in your markup.",
icon: LockClosedIcon,
},
{
name: "Headless UI",
description:
"Completely unstyled, fully accessible UI components, designed to integrate beautifully with Tailwind CSS.",
icon: ArrowPathIcon,
},
{
name: "Built-in Components",
description:
"A collection of UI components built with Tailwind CSS and Headless UI, ready to be used in your projects.",
icon: FingerPrintIcon,
},
],
feature: {
title: "Develop Faster",
subtitle: "Everything you need to create your app",
description:
"Includes everything you need to build your app, including a customizable UI kit, authentication, and more.",
image: "https://tailwindui.com/img/component-images/dark-project-app-screenshot.png",
},
announcement: {
enabled: true,
message: "Nuxt Tailwind Kit is now available for Nuxt 3!",
url: "/docs/getting-started/installation",
},
cta: {
title: "Boost your productivity",
description:
"Start building your next app with Nuxt Tailwind Kit today.",
links: [
{
title: "Get Started",
url: "/docs/getting-started/installation",
type: "primary",
},
{
title: "Learn More",
url: "/docs/getting-started/installation",
type: "alt",
arrow: true,
},
],
image: "https://tailwindui.com/img/component-images/dark-project-app-screenshot.png",
},
});