Skip to content

Commit 51614ab

Browse files
committed
docs: added daisyUI refs
1 parent ae790ec commit 51614ab

File tree

3 files changed

+32
-7
lines changed

3 files changed

+32
-7
lines changed

Diff for: apps/website/src/routes/docs/tailwind/(getting-started)/install/index.tsx

+18-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,24 @@ export default component$(() => {
1717
</div>
1818

1919
<p class="text-lg mt-6 mb-6">
20-
That's it! The Tailwind Kit is now installed and ready for use in your
21-
Qwik project.
20+
Which should install DasiyUI as part of its dependencies. Then you can
21+
add daisyUI to your <code class="bg-black">tailwind.config.js</code>{' '}
22+
file:
23+
</p>
24+
25+
<div class="mt-4">
26+
<pre class="bg-black max-w-prose p-8 border-white border text-white">
27+
{`module.exports = {
28+
//...
29+
plugins: [require("daisyui")],
30+
//...
31+
}`}
32+
</pre>
33+
</div>
34+
35+
<p class="text-lg mt-6 mb-6">
36+
This will install That's it! The Tailwind Kit is now installed and ready
37+
for use in your Qwik project.
2238
</p>
2339

2440
<p class="text-lg mb-6">

Diff for: apps/website/src/routes/docs/tailwind/(getting-started)/introduction/index.tsx

+11-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,17 @@ export default component$(() => {
1111

1212
<p class="mt-8 leading-relaxed mb-10">
1313
Welcome to the Tailwind Kit, a collection of ready-to-use, beautifully
14-
styled components designed to work seamlessly with Qwik. The Tailwind
15-
Kit is perfect for developers who want to build their web applications
16-
with a consistent, modern design while maintaining a strong focus on
17-
accessibility.
14+
styled components powered by{' '}
15+
<a target="_blank" href="https://tailwindcss.com" class="text-blue-400">
16+
Tailwind
17+
</a>{' '}
18+
and{' '}
19+
<a target="_blank" href="https://daisyui.com/" class="text-blue-400">
20+
DasiyUI
21+
</a>{' '}
22+
designed to work seamlessly with Qwik. The Tailwind Kit is perfect for
23+
developers who want to build their web applications with a consistent,
24+
modern design while maintaining a strong focus on accessibility.
1825
</p>
1926

2027
<h3 class="text-2xl font-semibold mb-4">Why Choose the Tailwind Kit?</h3>

Diff for: packages/kit-tailwind/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,7 @@
3232
"start": "vite --open --mode ssr",
3333
"qwik": "qwik"
3434
},
35-
"dependencies": {}
35+
"dependencies": {
36+
"daisyui": "^2.50.1"
37+
}
3638
}

0 commit comments

Comments
 (0)