Skip to content

Commit 815e35b

Browse files
committed
feat(website): add Docs page
1 parent f0a0b38 commit 815e35b

3 files changed

Lines changed: 63 additions & 0 deletions

File tree

app/src/app/docs/page.mdx

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Documentation
2+
3+
Welcome to the official documentation of @halvaradop/tailwindcss — your modern utility toolkit for Tailwind CSS v4.
4+
5+
Unlock intuitive utilities, enhanced variants, and seamless extensions to elevate your workflow.
6+
7+
## Getting Started
8+
9+
Set up in seconds:
10+
11+
- Installation — Add the package with your favorite manager.
12+
- Configuration — Extend Tailwind with the new plugin API, variants, and theme modifiers.
13+
- Usage — See real-world examples and best practices.
14+
15+
## Packages
16+
17+
Our toolkit includes:
18+
19+
- Animations — Elegant, composable animation utilities.
20+
- Helpers & Modifiers — Extend Tailwind’s base with extra power.
21+
- Custom Styles — Prebuilt styles and variants, native to Tailwind’s syntax.
22+
23+
[Browse Utilities →](/docs/utilities)
24+
25+
[Browse Animations →](/docs/animations)
26+
27+
## Guides & Best Practices
28+
29+
Curated articles to help you:
30+
31+
- Use modifiers effectively
32+
- Design scalable utilities
33+
- Combine with official Tailwind plugins
34+
35+
## Quick Reference
36+
37+
Use the sidebar or search to find:
38+
39+
- Utility names & usage
40+
- Default configs
41+
- Customization tips
42+
43+
## Powered by Tailwind CSS v4
44+
45+
Built on the latest Tailwind plugin API, variant system, and class-based customization. 100% compatible with v4.
46+
47+
## Need Help?
48+
49+
Visit our [Community Page](/community) to ask questions, report issues, or contribute.
50+
51+
## Explore
52+
53+
Jump to a popular section:
54+
55+
- [Animations](/docs/utilities)
56+
- [Modifiers](/docs/animations)
57+
58+
> Built for performance, clarity, and developer happiness. Start building modern UIs — the Tailwind way.

app/src/ui/header/header-menu.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ export const HeaderMenu = () => {
2626
<TextScramble>HOME</TextScramble>
2727
</Link>
2828
</motion.li>
29+
<motion.li className="[--nav-li:100%] base:[--nav-li:0%]" variants={itemVariants}>
30+
<Link href="/docs">
31+
<TextScramble>DOCS</TextScramble>
32+
</Link>
33+
</motion.li>
2934
<motion.li className="[--nav-li:100%] base:[--nav-li:0%]" variants={itemVariants}>
3035
<Link href="/docs/utilities">
3136
<TextScramble>UTILITIES</TextScramble>

0 commit comments

Comments
 (0)