daisy-ui-kit 2.1.0 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/nuxt.js +22 -0
- package/package.json +3 -3
- package/components/.DS_Store +0 -0
- package/components/Home/AlternatingFeatureSections.vue +0 -219
- package/components/Home/BitoviConsulting.vue +0 -53
- package/components/Home/BitoviOpenSource.vue +0 -51
- package/components/Home/Footer.vue +0 -127
- package/components/Home/GradientFeatureSections.vue +0 -87
- package/components/Home/Header.vue +0 -95
- package/components/Home/Hero.vue +0 -53
- package/components/Home/PremiumCTA.vue +0 -28
- package/components/Home/Testimonial.vue +0 -23
- package/components/Mask.config.ts +0 -77
- package/components/content/Badge.ts +0 -3
- package/components/content/CodePreview.vue +0 -28
- package/components/content/ColorBadge.vue +0 -24
- package/components/content/DemoExample.vue +0 -23
- package/components/content/DemoExampleResponsive.vue +0 -59
- package/components/content/IframeRenderer.ts +0 -53
- package/components/content/Indent.vue +0 -3
- package/components/content/LocalLinks.vue +0 -31
- package/components/content/NotFound.vue +0 -42
- package/components/content/PageNext.vue +0 -24
- package/components/content/PagePrevious.vue +0 -24
- package/components/content/PrevNext.vue +0 -40
- package/components/content/ProseA.vue +0 -19
- package/components/content/ProseAlert.vue +0 -11
- package/components/content/ProseBlockquote.vue +0 -5
- package/components/content/ProseCode.vue +0 -62
- package/components/content/ProseCodeInline.vue +0 -3
- package/components/content/ProseEm.vue +0 -5
- package/components/content/ProseH1.vue +0 -16
- package/components/content/ProseH2.vue +0 -16
- package/components/content/ProseH3.vue +0 -16
- package/components/content/ProseH4.vue +0 -16
- package/components/content/ProseH5.vue +0 -16
- package/components/content/ProseH6.vue +0 -16
- package/components/content/ProseHr.vue +0 -3
- package/components/content/ProseImg.vue +0 -34
- package/components/content/ProseLi.vue +0 -3
- package/components/content/ProseOl.vue +0 -5
- package/components/content/ProseP.vue +0 -3
- package/components/content/ProseStrong.vue +0 -5
- package/components/content/ProseTable.vue +0 -7
- package/components/content/ProseTbody.vue +0 -5
- package/components/content/ProseTd.vue +0 -5
- package/components/content/ProseTh.vue +0 -5
- package/components/content/ProseThead.vue +0 -5
- package/components/content/ProseTr.vue +0 -5
- package/components/content/ProseUl.vue +0 -5
- package/components/content/Search.vue +0 -160
- package/components/content/Sidebar.vue +0 -65
- package/components/content/SidebarMenuSection.vue +0 -38
- package/components/content/SigninForm.vue +0 -47
- package/components/content/TableOfContents.vue +0 -80
- package/components/content/TypeBadge.vue +0 -17
- package/components/content/UserMenu.vue +0 -62
- package/components/theme/Builder.vue +0 -284
- package/components/theme/Output.vue +0 -70
- package/components/theme/Picker.vue +0 -47
- package/components/theme/Preview.vue +0 -1684
- package/components/theme/Provider.vue +0 -43
- package/components/theme/Snooper.vue +0 -41
- package/components/theme/Swatch.vue +0 -47
- package/components/theme/custom-themes.ts +0 -34
- package/components/theme/theme-utils.ts +0 -175
package/nuxt.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { fileURLToPath } from 'node:url'
|
|
2
|
+
import { defineNuxtModule } from '@nuxt/kit'
|
|
3
|
+
|
|
4
|
+
export default defineNuxtModule({
|
|
5
|
+
meta: {
|
|
6
|
+
name: 'daisy-ui-kit',
|
|
7
|
+
configKey: 'daisy',
|
|
8
|
+
},
|
|
9
|
+
defaults: {
|
|
10
|
+
prefix: '',
|
|
11
|
+
},
|
|
12
|
+
setup(moduleOptions, nuxt) {
|
|
13
|
+
const { prefix } = moduleOptions
|
|
14
|
+
|
|
15
|
+
nuxt.hook('components:dirs', (dirs) => {
|
|
16
|
+
dirs.push({
|
|
17
|
+
path: fileURLToPath(new URL('./components', import.meta.url)),
|
|
18
|
+
prefix,
|
|
19
|
+
})
|
|
20
|
+
})
|
|
21
|
+
},
|
|
22
|
+
})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "daisy-ui-kit",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "nuxi build",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"main": "index.ts",
|
|
17
17
|
"files": [
|
|
18
|
-
"components
|
|
19
|
-
"nuxt.
|
|
18
|
+
"components/*.vue",
|
|
19
|
+
"nuxt.js"
|
|
20
20
|
],
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@vueuse/core": "^10.2.1",
|
package/components/.DS_Store
DELETED
|
Binary file
|
|
@@ -1,219 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
const isChecked = ref(true)
|
|
3
|
-
const name = ref('')
|
|
4
|
-
const quest = ref('')
|
|
5
|
-
const favoriteColor = ref('')
|
|
6
|
-
</script>
|
|
7
|
-
|
|
8
|
-
<template>
|
|
9
|
-
<!-- Alternating Feature Sections -->
|
|
10
|
-
<div class="relative pt-16 pb-32 overflow-hidden">
|
|
11
|
-
<div aria-hidden="true" class="absolute inset-x-0 top-0 h-48 bg-gradient-to-b from-secondary/30" />
|
|
12
|
-
<div class="relative">
|
|
13
|
-
<div
|
|
14
|
-
class="lg:mx-auto lg:max-w-7xl lg:px-8 lg:grid lg:grid-cols-2 lg:grid-flow-col-dense lg:gap-24"
|
|
15
|
-
>
|
|
16
|
-
<div class="max-w-xl px-4 mx-auto sm:px-6 lg:py-16 lg:max-w-none lg:mx-0 lg:px-0">
|
|
17
|
-
<div>
|
|
18
|
-
<Flex class="w-12 h-12 rounded-md bg-gradient-secondary-b items-center justify-center">
|
|
19
|
-
<Icon name="heroicons:heart" class="w-6 h-6 text-secondary-content" aria-hidden="true" />
|
|
20
|
-
</Flex>
|
|
21
|
-
|
|
22
|
-
<Text block size="3xl" extrabold class="mt-6 tracking-tight">
|
|
23
|
-
Clean Components
|
|
24
|
-
</Text>
|
|
25
|
-
<Text block lg class="mt-4 text-opacity-80">
|
|
26
|
-
Tailwind classes can get messy. DaisyUI Kit helps you declutter your code. It's clean, scalable Tailwind.
|
|
27
|
-
</Text>
|
|
28
|
-
|
|
29
|
-
<NuxtLink to="/docs/install">
|
|
30
|
-
<Button primary class="mt-6 bg-gradient-primary-r">
|
|
31
|
-
Get started
|
|
32
|
-
</Button>
|
|
33
|
-
</NuxtLink>
|
|
34
|
-
</div>
|
|
35
|
-
|
|
36
|
-
<div class="pt-6 mt-8 border-t border-gray-200">
|
|
37
|
-
<HomeTestimonial />
|
|
38
|
-
</div>
|
|
39
|
-
</div>
|
|
40
|
-
<div class="mt-12 sm:mt-16 lg:mt-0">
|
|
41
|
-
<div class="py-16 pl-4 -mr-48 sm:pl-6 md:-mr-16 lg:px-0 lg:m-0 lg:relative lg:h-full">
|
|
42
|
-
<Flex grow class="w-[800px] mx-auto shadow-lg mockup-code">
|
|
43
|
-
<pre><code>
|
|
44
|
-
<span class="text-gray-400"><!-- 👍 Write this --></span>
|
|
45
|
-
<<span class="text-orange-400">Button</span> <span class="text-purple-400">primary</span>>
|
|
46
|
-
Get Started
|
|
47
|
-
</<span class="text-orange-400">Button</span>></code>
|
|
48
|
-
|
|
49
|
-
<span class="text-gray-400"><!-- 👎 Avoid this --></span>
|
|
50
|
-
<<span class="text-green-400">button</span> <span class="text-purple-400">class</span>="<span class="text-amber-400">inline-block px-4 py-3</span>
|
|
51
|
-
<span class="text-amber-400">text-sm font-semibold text-center</span>
|
|
52
|
-
<span class="text-amber-400">text-white uppercase transition</span>
|
|
53
|
-
<span class="text-amber-400">duration-200 ease-in-out bg-indigo-600 </span>
|
|
54
|
-
<span class="text-amber-400">rounded-md cursor-pointer</span>
|
|
55
|
-
<span class="text-amber-400">hover:bg-indigo-700</span>
|
|
56
|
-
>
|
|
57
|
-
Get Started
|
|
58
|
-
<<span class="text-green-400">button</span>>
|
|
59
|
-
|
|
60
|
-
</pre>
|
|
61
|
-
</Flex>
|
|
62
|
-
</div>
|
|
63
|
-
</div>
|
|
64
|
-
</div>
|
|
65
|
-
</div>
|
|
66
|
-
<div class="mt-24">
|
|
67
|
-
<div
|
|
68
|
-
class="lg:mx-auto lg:max-w-7xl lg:px-8 lg:grid lg:grid-cols-2 lg:grid-flow-col-dense lg:gap-24"
|
|
69
|
-
>
|
|
70
|
-
<div
|
|
71
|
-
class="max-w-xl px-4 mx-auto sm:px-6 lg:py-32 lg:max-w-none lg:mx-0 lg:px-0 lg:col-start-2"
|
|
72
|
-
>
|
|
73
|
-
<div>
|
|
74
|
-
<Flex
|
|
75
|
-
class="w-12 h-12 rounded-md bg-gradient-secondary-b text-secondary-content items-center justify-center"
|
|
76
|
-
>
|
|
77
|
-
<Icon name="heroicons:sparkles" class="w-6 h-6" aria-hidden="true" />
|
|
78
|
-
</Flex>
|
|
79
|
-
<Text block size="3xl" extrabold class="mt-6 tracking-tight text-base-content/90">
|
|
80
|
-
Beautiful Components
|
|
81
|
-
</Text>
|
|
82
|
-
<Text block lg class="mt-4 text-base-content/60">
|
|
83
|
-
DaisyUI Kit's components are powered by the beautiful CSS of
|
|
84
|
-
<NuxtLink target="blank" to="https://www.daisyui.com">
|
|
85
|
-
<Link is="span">
|
|
86
|
-
DaisyUI
|
|
87
|
-
</Link>
|
|
88
|
-
</NuxtLink>. Our components are built with
|
|
89
|
-
just the right amount of elegant TypeScript under the hood.
|
|
90
|
-
</Text>
|
|
91
|
-
|
|
92
|
-
<NuxtLink to="/docs/button">
|
|
93
|
-
<Button primary class="mt-6 bg-gradient-primary-r">
|
|
94
|
-
Get started
|
|
95
|
-
</Button>
|
|
96
|
-
</NuxtLink>
|
|
97
|
-
</div>
|
|
98
|
-
</div>
|
|
99
|
-
<div class="relative mt-12 sm:mt-16 lg:mt-0 lg:col-start-1">
|
|
100
|
-
<div class="absolute inset-0 pr-4 -ml-48 sm:pr-6 md:-ml-16 lg:px-0 lg:m-0 lg:relative lg:h-full">
|
|
101
|
-
<img
|
|
102
|
-
class="w-full shadow-xl rounded-xl ring-1 ring-black ring-opacity-5 lg:absolute lg:right-0 lg:h-full lg:w-auto lg:max-w-none"
|
|
103
|
-
src="/img/unsplash-forest-sm.jpg"
|
|
104
|
-
alt="Customer profile user interface"
|
|
105
|
-
>
|
|
106
|
-
</div>
|
|
107
|
-
<div class="absolute inset-4">
|
|
108
|
-
<Flex class="space-x-4">
|
|
109
|
-
<Flex col>
|
|
110
|
-
<Card glass class="w-48 p-6 shadow-xl">
|
|
111
|
-
<Label class="cursor-pointer">
|
|
112
|
-
<LabelText class="text-neutral">Neutral</LabelText>
|
|
113
|
-
<Toggle v-model="isChecked" />
|
|
114
|
-
</Label>
|
|
115
|
-
|
|
116
|
-
<Label class="cursor-pointer">
|
|
117
|
-
<LabelText class="text-neutral">Primary</LabelText>
|
|
118
|
-
<Toggle v-model="isChecked" primary />
|
|
119
|
-
</Label>
|
|
120
|
-
|
|
121
|
-
<Label class="cursor-pointer">
|
|
122
|
-
<LabelText class="text-neutral">Secondary</LabelText>
|
|
123
|
-
<Toggle v-model="isChecked" secondary />
|
|
124
|
-
</Label>
|
|
125
|
-
|
|
126
|
-
<Label class="cursor-pointer">
|
|
127
|
-
<LabelText class="text-neutral">Accent</LabelText>
|
|
128
|
-
<Toggle v-model="isChecked" accent />
|
|
129
|
-
</Label>
|
|
130
|
-
</Card>
|
|
131
|
-
|
|
132
|
-
<Card glass class="w-48 p-6 mt-4 text-white shadow-xl">
|
|
133
|
-
<Label class="cursor-pointer">
|
|
134
|
-
<LabelText class="text-neutral">Neutral</LabelText>
|
|
135
|
-
<Toggle v-model="isChecked" />
|
|
136
|
-
</Label>
|
|
137
|
-
|
|
138
|
-
<Label class="cursor-pointer">
|
|
139
|
-
<LabelText class="text-neutral">Primary</LabelText>
|
|
140
|
-
<Toggle v-model="isChecked" primary />
|
|
141
|
-
</Label>
|
|
142
|
-
|
|
143
|
-
<Label class="cursor-pointer">
|
|
144
|
-
<LabelText class="text-neutral">Secondary</LabelText>
|
|
145
|
-
<Toggle v-model="isChecked" secondary />
|
|
146
|
-
</Label>
|
|
147
|
-
|
|
148
|
-
<Label class="cursor-pointer">
|
|
149
|
-
<LabelText class="text-neutral">Accent</LabelText>
|
|
150
|
-
<Toggle v-model="isChecked" accent />
|
|
151
|
-
</Label>
|
|
152
|
-
</Card>
|
|
153
|
-
</Flex>
|
|
154
|
-
|
|
155
|
-
<Card class="p-6 space-y-6 shadow-xl text-base-content bg-base-100 w-80">
|
|
156
|
-
<FormControl class="w-full max-w-xs">
|
|
157
|
-
<Label>
|
|
158
|
-
<LabelText>What is your name?</LabelText>
|
|
159
|
-
<LabelTextAlt>
|
|
160
|
-
<Tooltip primary left tip="Just answer correctly!">
|
|
161
|
-
<Button tabindex="-1" xs ghost><Icon name="feather:info" /></Button>
|
|
162
|
-
</Tooltip>
|
|
163
|
-
</LabelTextAlt>
|
|
164
|
-
</Label>
|
|
165
|
-
<TextInput
|
|
166
|
-
v-model="name"
|
|
167
|
-
bordered
|
|
168
|
-
placeholder="Sir Gallahad"
|
|
169
|
-
class="w-full max-w-xs"
|
|
170
|
-
/>
|
|
171
|
-
</FormControl>
|
|
172
|
-
|
|
173
|
-
<FormControl class="w-full max-w-xs">
|
|
174
|
-
<Label>
|
|
175
|
-
<LabelText>What is your quest?</LabelText>
|
|
176
|
-
<LabelTextAlt>
|
|
177
|
-
<Tooltip secondary left tip="Where do you want to go, today?">
|
|
178
|
-
<Button tabindex="-1" xs ghost><Icon name="feather:info" /></Button>
|
|
179
|
-
</Tooltip>
|
|
180
|
-
</LabelTextAlt>
|
|
181
|
-
</Label>
|
|
182
|
-
<TextInput
|
|
183
|
-
v-model="quest"
|
|
184
|
-
bordered
|
|
185
|
-
placeholder="I seek the Grail"
|
|
186
|
-
class="w-full max-w-xs"
|
|
187
|
-
/>
|
|
188
|
-
</FormControl>
|
|
189
|
-
|
|
190
|
-
<FormControl class="w-full max-w-xs">
|
|
191
|
-
<Label>
|
|
192
|
-
<LabelText>What is your favorite color?</LabelText>
|
|
193
|
-
<LabelTextAlt>
|
|
194
|
-
<Tooltip accent left tip="Blue or Yellow?">
|
|
195
|
-
<Button tabindex="-1" xs ghost><Icon name="feather:info" /></Button>
|
|
196
|
-
</Tooltip>
|
|
197
|
-
</LabelTextAlt>
|
|
198
|
-
</Label>
|
|
199
|
-
<TextInput
|
|
200
|
-
v-model="favoriteColor"
|
|
201
|
-
bordered
|
|
202
|
-
placeholder="Blue, no yellow?"
|
|
203
|
-
class="w-full max-w-xs"
|
|
204
|
-
/>
|
|
205
|
-
<Label>
|
|
206
|
-
<LabelTextAlt><Text error>Don't get this wrong</Text></LabelTextAlt>
|
|
207
|
-
<LabelTextAlt><Text info>or else</Text></LabelTextAlt>
|
|
208
|
-
</Label>
|
|
209
|
-
</FormControl>
|
|
210
|
-
|
|
211
|
-
<Button>Submit</Button>
|
|
212
|
-
</Card>
|
|
213
|
-
</Flex>
|
|
214
|
-
</div>
|
|
215
|
-
</div>
|
|
216
|
-
</div>
|
|
217
|
-
</div>
|
|
218
|
-
</div>
|
|
219
|
-
</template>
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<!-- Stats section -->
|
|
3
|
-
<div class="relative bg-gray-900">
|
|
4
|
-
<div class="absolute inset-x-0 bottom-0 h-80 xl:top-0 xl:h-full">
|
|
5
|
-
<div class="w-full h-full xl:grid xl:grid-cols-2">
|
|
6
|
-
<div class="h-full xl:relative xl:col-start-2">
|
|
7
|
-
<img
|
|
8
|
-
class="object-cover w-full h-full opacity-25 xl:absolute xl:inset-0"
|
|
9
|
-
src="/img/unsplash-dev-group-sm.jpg"
|
|
10
|
-
alt="People working on laptops"
|
|
11
|
-
>
|
|
12
|
-
<div
|
|
13
|
-
aria-hidden="true"
|
|
14
|
-
class="absolute inset-x-0 top-0 h-32 bg-gradient-to-b from-gray-900 xl:inset-y-0 xl:left-0 xl:h-full xl:w-32 xl:bg-gradient-to-r"
|
|
15
|
-
/>
|
|
16
|
-
</div>
|
|
17
|
-
</div>
|
|
18
|
-
</div>
|
|
19
|
-
|
|
20
|
-
<div
|
|
21
|
-
class="max-w-4xl px-4 mx-auto sm:px-6 lg:max-w-7xl lg:px-8 xl:grid xl:grid-cols-2 xl:grid-flow-col-dense xl:gap-x-8"
|
|
22
|
-
>
|
|
23
|
-
<div class="relative pt-12 pb-64 text-white sm:pt-24 sm:pb-64 xl:col-start-1 xl:pb-24">
|
|
24
|
-
<Text sm semibold uppercase block class="tracking-wide">
|
|
25
|
-
<span class="text-transparent bg-gradient-to-r from-purple-300 to-indigo-300 bg-clip-text">Bitovi Consulting</span>
|
|
26
|
-
</Text>
|
|
27
|
-
<Text
|
|
28
|
-
primary
|
|
29
|
-
block extrabold size="3xl"
|
|
30
|
-
class="mt-3"
|
|
31
|
-
>
|
|
32
|
-
Let the experts build it for you
|
|
33
|
-
</Text>
|
|
34
|
-
|
|
35
|
-
<Text is="p" lg class="mt-5 text-gray-300">
|
|
36
|
-
Bitovi has over 15 years of experience helping every type of business.
|
|
37
|
-
From the smallest startups to the largest Fortune 100 companies, we can
|
|
38
|
-
either be your team or get your team trained quickly to build scalable,
|
|
39
|
-
beautiful applications. Take a look at our track record and get in touch
|
|
40
|
-
when you're ready.
|
|
41
|
-
</Text>
|
|
42
|
-
|
|
43
|
-
<Flex class="mt-6 space-x-4">
|
|
44
|
-
<NuxtLink to="https://www.bitovi.com" target="blank">
|
|
45
|
-
<Button secondary lg>
|
|
46
|
-
Visit Bitovi.com
|
|
47
|
-
</Button>
|
|
48
|
-
</NuxtLink>
|
|
49
|
-
</Flex>
|
|
50
|
-
</div>
|
|
51
|
-
</div>
|
|
52
|
-
</div>
|
|
53
|
-
</template>
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<!-- Logo Cloud -->
|
|
3
|
-
<div class="bg-base-200">
|
|
4
|
-
<div class="px-4 py-16 mx-auto max-w-7xl sm:px-6 lg:px-8">
|
|
5
|
-
<Flex class="flex-col gap-4 sm:flex-row items-center justify-center">
|
|
6
|
-
<Text is="h3" uppercase semibold center lg class="tracking-wide text-base-content/80">
|
|
7
|
-
Another Open-Source Gift by
|
|
8
|
-
</Text>
|
|
9
|
-
<NuxtLink target="blank" to="https://www.bitovi.com" class="-mt-4">
|
|
10
|
-
<img src="/logos/bitovi-red.png" class="h-[40px]">
|
|
11
|
-
</NuxtLink>
|
|
12
|
-
</Flex>
|
|
13
|
-
|
|
14
|
-
<Flex class="mt-4 mb-4 items-center justify-center" />
|
|
15
|
-
|
|
16
|
-
<Text is="p" center lg semibold>
|
|
17
|
-
DaisyUI Kit joins the ranks of other professional-quality open-source projects.
|
|
18
|
-
</Text>
|
|
19
|
-
|
|
20
|
-
<div class="grid grid-cols-1 lg:grid-cols-3">
|
|
21
|
-
<Flex class="py-6 lg:py-10 bg-gradient-radial from-white/20 via-transparent to-transparent items-center justify-center">
|
|
22
|
-
<NuxtLink target="blank" to="https://www.canjs.com">
|
|
23
|
-
<img
|
|
24
|
-
class="h-10 lg:h-16"
|
|
25
|
-
src="/logos/canjs.svg"
|
|
26
|
-
alt="CanJS is a Bitovi professional open-source project."
|
|
27
|
-
>
|
|
28
|
-
</NuxtLink>
|
|
29
|
-
</Flex>
|
|
30
|
-
<Flex class="py-6 lg:py-10 bg-gradient-radial from-white/20 via-transparent to-transparent items-center justify-center">
|
|
31
|
-
<NuxtLink target="blank" to="https://www.donejs.com">
|
|
32
|
-
<img
|
|
33
|
-
class="h-10 lg:h-16"
|
|
34
|
-
src="/logos/donejs.png"
|
|
35
|
-
alt="DoneJS is a Bitovi professional open-source project."
|
|
36
|
-
>
|
|
37
|
-
</NuxtLink>
|
|
38
|
-
</Flex>
|
|
39
|
-
<Flex class="py-6 lg:py-10 bg-gradient-radial from-white/20 via-transparent to-transparent items-center justify-center">
|
|
40
|
-
<NuxtLink target="blank" to="https://www.stealjs.com">
|
|
41
|
-
<img
|
|
42
|
-
class="h-10 lg:h-16"
|
|
43
|
-
src="/logos/stealjs.svg"
|
|
44
|
-
alt="StealJS is a Bitovi professional open-source project."
|
|
45
|
-
>
|
|
46
|
-
</NuxtLink>
|
|
47
|
-
</Flex>
|
|
48
|
-
</div>
|
|
49
|
-
</div>
|
|
50
|
-
</div>
|
|
51
|
-
</template>
|
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
const footerNavigation = {
|
|
3
|
-
solutions: [
|
|
4
|
-
{ name: 'Install', to: '/docs/install' },
|
|
5
|
-
{ name: 'Components', to: '/docs/button' },
|
|
6
|
-
],
|
|
7
|
-
support: [
|
|
8
|
-
{ name: 'Consulting', to: 'https://www.bitovi.com', target: 'blank' },
|
|
9
|
-
{ name: 'Documentation', to: '#' },
|
|
10
|
-
{ name: 'Github Issues', to: '#' },
|
|
11
|
-
],
|
|
12
|
-
// company: [
|
|
13
|
-
// { name: 'About', to: '#' },
|
|
14
|
-
// { name: 'Blog', to: '#' },
|
|
15
|
-
// { name: 'Jobs', to: '#' },
|
|
16
|
-
// { name: 'Press', to: '#' },
|
|
17
|
-
// { name: 'Partners', to: '#' },
|
|
18
|
-
// ],
|
|
19
|
-
// legal: [
|
|
20
|
-
// { name: 'Claim', to: '#' },
|
|
21
|
-
// { name: 'Privacy', to: '#' },
|
|
22
|
-
// { name: 'Terms', to: '#' },
|
|
23
|
-
// ],
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
const social = [
|
|
27
|
-
// { name: 'Facebook', to: '#', icon: IconFacebook },
|
|
28
|
-
// { name: 'Instagram', to: '#', icon: IconInstagram },
|
|
29
|
-
{ name: 'Twitter', to: '#', icon: 'fe/twitter' },
|
|
30
|
-
{ name: 'GitHub', to: '#', icon: 'fe/github' },
|
|
31
|
-
// { name: 'Dribbble', to: '#', icon: IconDribbble },
|
|
32
|
-
]
|
|
33
|
-
</script>
|
|
34
|
-
|
|
35
|
-
<template>
|
|
36
|
-
<footer class="bg-base-100" aria-labelledby="footer-heading">
|
|
37
|
-
<h2 id="footer-heading" class="sr-only">
|
|
38
|
-
Footer
|
|
39
|
-
</h2>
|
|
40
|
-
<div class="px-4 pt-16 pb-8 mx-auto max-w-7xl sm:px-6 lg:pt-24 lg:px-8">
|
|
41
|
-
<div class="xl:grid xl:grid-cols-3 xl:gap-8">
|
|
42
|
-
<div class="grid grid-cols-2 gap-8 xl:col-span-2">
|
|
43
|
-
<div class="md:grid md:grid-cols-2 md:gap-8">
|
|
44
|
-
<div>
|
|
45
|
-
<Text is="h3" semibold sm class="tracking-wider uppercase text-base-content/40">
|
|
46
|
-
Solutions
|
|
47
|
-
</Text>
|
|
48
|
-
<ul role="list" class="mt-4 space-y-4">
|
|
49
|
-
<li v-for="item in footerNavigation.solutions" :key="item.name">
|
|
50
|
-
<NuxtLink :href="item.to" class="text-base-content">
|
|
51
|
-
{{ item.name }}
|
|
52
|
-
</NuxtLink>
|
|
53
|
-
</li>
|
|
54
|
-
</ul>
|
|
55
|
-
</div>
|
|
56
|
-
|
|
57
|
-
<div class="mt-12 md:mt-0">
|
|
58
|
-
<Text is="h3" semibold sm class="tracking-wider uppercase text-base-content/40">
|
|
59
|
-
Support
|
|
60
|
-
</Text>
|
|
61
|
-
<ul role="list" class="mt-4 space-y-4">
|
|
62
|
-
<li v-for="item in footerNavigation.support" :key="item.name">
|
|
63
|
-
<NuxtLink :href="item.to" class="text-base-content" :target="item.target">
|
|
64
|
-
{{ item.name }}
|
|
65
|
-
</NuxtLink>
|
|
66
|
-
</li>
|
|
67
|
-
</ul>
|
|
68
|
-
</div>
|
|
69
|
-
</div>
|
|
70
|
-
</div>
|
|
71
|
-
|
|
72
|
-
<div class="mt-12 xl:mt-0">
|
|
73
|
-
<Text is="h3" sm semibold class="tracking-wider uppercase text-base-content/50">
|
|
74
|
-
Subscribe to updates
|
|
75
|
-
</Text>
|
|
76
|
-
<Text is="p" class="mt-4 text-base-content/80">
|
|
77
|
-
The latest news, articles, and resources, sent to your inbox weekly.
|
|
78
|
-
</Text>
|
|
79
|
-
|
|
80
|
-
<form class="mt-4">
|
|
81
|
-
<FormControl>
|
|
82
|
-
<Label for="email-address" class="sr-only">
|
|
83
|
-
<LabelText>Email address</LabelText>
|
|
84
|
-
</Label>
|
|
85
|
-
<Join>
|
|
86
|
-
<TextInput
|
|
87
|
-
id="email-address"
|
|
88
|
-
join
|
|
89
|
-
name="email-address"
|
|
90
|
-
bordered primary
|
|
91
|
-
type="email"
|
|
92
|
-
autocomplete="email"
|
|
93
|
-
required
|
|
94
|
-
placeholder="Enter your email"
|
|
95
|
-
class="w-full placeholder-base-content/80"
|
|
96
|
-
/>
|
|
97
|
-
<Button join class="bg-gradient-primary-r hover:bg-primary-focus zoom-105 text-primary-content">
|
|
98
|
-
Subscribe
|
|
99
|
-
</Button>
|
|
100
|
-
</Join>
|
|
101
|
-
</FormControl>
|
|
102
|
-
</form>
|
|
103
|
-
</div>
|
|
104
|
-
</div>
|
|
105
|
-
|
|
106
|
-
<Flex class="pt-8 mt-12 border-t border-base-content lg:mt-16 items-center justify-between">
|
|
107
|
-
<NuxtLink target="blank" to="https://www.bitovi.com">
|
|
108
|
-
<Link is="span" hover>
|
|
109
|
-
Built with ❤️ by Bitovi
|
|
110
|
-
</Link>
|
|
111
|
-
</NuxtLink>
|
|
112
|
-
|
|
113
|
-
<Flex class="gap-6">
|
|
114
|
-
<NuxtLink
|
|
115
|
-
v-for="item in social"
|
|
116
|
-
:key="item.name"
|
|
117
|
-
:to="item.to"
|
|
118
|
-
class="text-gray-400 hover:text-gray-500"
|
|
119
|
-
>
|
|
120
|
-
<span class="sr-only">{{ item.name }}</span>
|
|
121
|
-
<Icon :name="item.icon" class="w-6 h-6" aria-hidden="true" />
|
|
122
|
-
</NuxtLink>
|
|
123
|
-
</Flex>
|
|
124
|
-
</Flex>
|
|
125
|
-
</div>
|
|
126
|
-
</footer>
|
|
127
|
-
</template>
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
const features = [
|
|
3
|
-
{
|
|
4
|
-
name: 'Beyond the Dark Side',
|
|
5
|
-
description:
|
|
6
|
-
'Don\'t clutter your app with "dark:" prefixes. Build Smart with CSS variables.',
|
|
7
|
-
icon: 'heroicons-outline:moon',
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
name: 'Theme Builder',
|
|
11
|
-
description:
|
|
12
|
-
'Fine tune the perfect color palette for your app.',
|
|
13
|
-
icon: 'heroicons-outline:adjustments',
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
name: 'Beautiful Inputs',
|
|
17
|
-
description:
|
|
18
|
-
'Create beautiful forms with TextInput, TextArea, Checkbox, Toggle, Radio, Range, Select and more!',
|
|
19
|
-
icon: 'heroicons-outline:pencil-alt',
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
name: 'Keep Tabs on Delightful',
|
|
23
|
-
description:
|
|
24
|
-
'The TabsManager component lets you stay in control and create the perfect, custom tabs layout.',
|
|
25
|
-
icon: 'ph/tabs-bold',
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
name: 'Lay It All Out',
|
|
29
|
-
description:
|
|
30
|
-
'Use the Drawer, Flex, Footer, Stack, Join, and more to create the perfect layout.',
|
|
31
|
-
icon: 'heroicons-outline:template',
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
name: 'Think Outside the Box',
|
|
35
|
-
description:
|
|
36
|
-
'Build with all kinds of shapes using Mask. Your site can be more than a grid of rectangles.',
|
|
37
|
-
icon: 'heroicons-outline:star',
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
name: 'Interactive Makes Interesting',
|
|
41
|
-
description:
|
|
42
|
-
'Create Dropdowns, Modals, Tooltips, and Tabs, all without writing a single line of JavaScript.',
|
|
43
|
-
icon: 'heroicons-outline:collection',
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
name: 'What\s on the Menu',
|
|
47
|
-
description:
|
|
48
|
-
'DaisyUI comes with gorgeous menu styles. They cleanly integrate with router links.',
|
|
49
|
-
icon: 'heroicons-outline:heart',
|
|
50
|
-
},
|
|
51
|
-
]
|
|
52
|
-
</script>
|
|
53
|
-
|
|
54
|
-
<template>
|
|
55
|
-
<!-- Gradient Feature Section -->
|
|
56
|
-
<div class="duration-300 transition-color bg-gradient-primary-r text-primary-content">
|
|
57
|
-
<div
|
|
58
|
-
class="max-w-4xl px-4 py-16 mx-auto sm:px-6 sm:pt-20 sm:pb-24 lg:max-w-7xl lg:pt-24 lg:px-8"
|
|
59
|
-
>
|
|
60
|
-
<Text block size="3xl" extrabold class="tracking-tight">
|
|
61
|
-
Another Open-Source Gift from Bitovi to You
|
|
62
|
-
</Text>
|
|
63
|
-
<Text block lg class="max-w-3xl mt-4 text-opacity-50">
|
|
64
|
-
Everything in DaisyUI Kit is yours for free. Consider each component to be our gift to you!
|
|
65
|
-
<br>Here are a few of the highlights.
|
|
66
|
-
</Text>
|
|
67
|
-
|
|
68
|
-
<div
|
|
69
|
-
class="grid grid-cols-1 mt-12 gap-x-6 gap-y-12 sm:grid-cols-2 lg:mt-16 lg:grid-cols-4 lg:gap-x-8 lg:gap-y-16"
|
|
70
|
-
>
|
|
71
|
-
<div v-for="feature in features" :key="feature.name">
|
|
72
|
-
<Flex class="w-12 h-12 rounded-md bg-base-100/20 items-center justify-center">
|
|
73
|
-
<Icon :name="feature.icon" class="w-6 h-6" aria-hidden="true" />
|
|
74
|
-
</Flex>
|
|
75
|
-
<div class="mt-6">
|
|
76
|
-
<Text is="h3" block lg medium>
|
|
77
|
-
{{ feature.name }}
|
|
78
|
-
</Text>
|
|
79
|
-
<Text is="p" block base class="mt-2 text-opacity-50">
|
|
80
|
-
{{ feature.description }}
|
|
81
|
-
</Text>
|
|
82
|
-
</div>
|
|
83
|
-
</div>
|
|
84
|
-
</div>
|
|
85
|
-
</div>
|
|
86
|
-
</div>
|
|
87
|
-
</template>
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
const user = useState('user')
|
|
3
|
-
|
|
4
|
-
const links = [
|
|
5
|
-
{
|
|
6
|
-
name: 'Inbox',
|
|
7
|
-
description:
|
|
8
|
-
'Get a better understanding of where your traffic is coming from.',
|
|
9
|
-
href: '#',
|
|
10
|
-
icon: 'heroicons-outline:inbox',
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
name: 'Messaging',
|
|
14
|
-
description: 'Speak directly to your customers in a more meaningful way.',
|
|
15
|
-
href: '#',
|
|
16
|
-
icon: 'heroicons-outline:annotation',
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
name: 'Live Chat',
|
|
20
|
-
description: 'Your customers\' data will be safe and secure.',
|
|
21
|
-
href: '#',
|
|
22
|
-
icon: 'heroicons-outline:chat-alt-2',
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
name: 'Knowledge Base',
|
|
26
|
-
description: 'Connect with third-party tools that you\'re already using.',
|
|
27
|
-
href: '#',
|
|
28
|
-
icon: 'heroicons-outline:question-mark-circle',
|
|
29
|
-
},
|
|
30
|
-
]
|
|
31
|
-
</script>
|
|
32
|
-
|
|
33
|
-
<template>
|
|
34
|
-
<header class="bg-base-100/95">
|
|
35
|
-
<Flex
|
|
36
|
-
class="px-4 py-6 pb-2 mx-auto max-w-7xl sm:px-6 md:justify-start md:space-x-10 lg:px-8 items-center justify-between"
|
|
37
|
-
>
|
|
38
|
-
<Flex grow>
|
|
39
|
-
<NuxtLink to="/">
|
|
40
|
-
<Logo class="ml-4 text-4xl" />
|
|
41
|
-
</NuxtLink>
|
|
42
|
-
</Flex>
|
|
43
|
-
|
|
44
|
-
<Flex is="nav" row class="hidden gap-10 md:flex items-center">
|
|
45
|
-
<!-- <a href="#" class="text-base font-medium text-base-content ">
|
|
46
|
-
Themes
|
|
47
|
-
</a> -->
|
|
48
|
-
|
|
49
|
-
<Search />
|
|
50
|
-
|
|
51
|
-
<NuxtLink to="/docs/install" class="text-base font-medium text-base-content ">
|
|
52
|
-
Install
|
|
53
|
-
</NuxtLink>
|
|
54
|
-
|
|
55
|
-
<NuxtLink to="/docs/button" class="text-base font-medium text-base-content ">
|
|
56
|
-
Components
|
|
57
|
-
</NuxtLink>
|
|
58
|
-
|
|
59
|
-
<!-- <a href="#" class="text-base font-medium text-base-content ">
|
|
60
|
-
Contribute
|
|
61
|
-
</a> -->
|
|
62
|
-
</Flex>
|
|
63
|
-
|
|
64
|
-
<ThemePicker />
|
|
65
|
-
|
|
66
|
-
<!-- <Flex items-center justify-end class="hidden md:flex md:flex-1 lg:w-0">
|
|
67
|
-
<template v-if="user">
|
|
68
|
-
<NuxtLink to="/app/dashboard">
|
|
69
|
-
<Button class="normal-case bg-gradient-to-r from-purple-600 to-indigo-600 bg-origin-border hover:from-purple-700 hover:to-indigo-700">
|
|
70
|
-
Open Dashboard
|
|
71
|
-
</Button>
|
|
72
|
-
</NuxtLink>
|
|
73
|
-
</template>
|
|
74
|
-
|
|
75
|
-
<template v-else>
|
|
76
|
-
<a href="/api/auth/login">
|
|
77
|
-
<Button
|
|
78
|
-
ghost
|
|
79
|
-
class="text-base font-medium text-gray-500 normal-case hover:text-gray-900"
|
|
80
|
-
>
|
|
81
|
-
Sign in
|
|
82
|
-
</Button>
|
|
83
|
-
</a>
|
|
84
|
-
<a href="/api/auth/login" class="ml-4">
|
|
85
|
-
<Button
|
|
86
|
-
class="text-base normal-case border-none shadow-md bg-gradient-primary-r hover:bg-primary-focus zoom-105 text-primary-content"
|
|
87
|
-
>
|
|
88
|
-
Sign up
|
|
89
|
-
</Button>
|
|
90
|
-
</a>
|
|
91
|
-
</template>
|
|
92
|
-
</Flex> -->
|
|
93
|
-
</Flex>
|
|
94
|
-
</header>
|
|
95
|
-
</template>
|