-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (76 loc) · 4.65 KB
/
Copy pathindex.html
File metadata and controls
80 lines (76 loc) · 4.65 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
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tailwind Component Pack — 30+ Components</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: { extend: { colors: { primary: { 50: '#eef2ff', 100: '#e0e7ff', 200: '#c7d2fe', 300: '#a5b4fc', 400: '#818cf8', 500: '#6366f1', 600: '#4f46e5', 700: '#4338ca', 800: '#3730a3', 900: '#312e81', 950: '#1e1b4b' } } } }
};
</script>
</head>
<body class="bg-gray-50 dark:bg-gray-900 text-gray-900 dark:text-white min-h-screen">
<div class="max-w-4xl mx-auto px-4 py-16 text-center">
<h1 class="text-4xl font-bold">Tailwind Component Pack</h1>
<p class="mt-4 text-lg text-gray-500 dark:text-gray-400">30+ production-ready components. Copy, paste, ship.</p>
<div class="mt-8 grid sm:grid-cols-2 md:grid-cols-3 gap-4 text-left">
<a href="components/navigation.html" class="block p-4 bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 hover:shadow-md transition">
<span class="text-2xl">🧭</span>
<h3 class="mt-2 font-semibold">Navigation</h3>
<p class="text-sm text-gray-500">Navbars, headers, search bars</p>
</a>
<a href="components/hero.html" class="block p-4 bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 hover:shadow-md transition">
<span class="text-2xl">🎯</span>
<h3 class="mt-2 font-semibold">Hero Sections</h3>
<p class="text-sm text-gray-500">Centered, split, with images</p>
</a>
<a href="components/sections.html" class="block p-4 bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 hover:shadow-md transition">
<span class="text-2xl">📐</span>
<h3 class="mt-2 font-semibold">Content Sections</h3>
<p class="text-sm text-gray-500">Features, stats, trust bars</p>
</a>
<a href="components/pricing.html" class="block p-4 bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 hover:shadow-md transition">
<span class="text-2xl">💰</span>
<h3 class="mt-2 font-semibold">Pricing Tables</h3>
<p class="text-sm text-gray-500">3 tiers with popular badge</p>
</a>
<a href="components/testimonials.html" class="block p-4 bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 hover:shadow-md transition">
<span class="text-2xl">⭐</span>
<h3 class="mt-2 font-semibold">Testimonials</h3>
<p class="text-sm text-gray-500">Grid, featured quote cards</p>
</a>
<a href="components/cta.html" class="block p-4 bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 hover:shadow-md transition">
<span class="text-2xl">🚀</span>
<h3 class="mt-2 font-semibold">CTA Sections</h3>
<p class="text-sm text-gray-500">Simple, gradient, email signup</p>
</a>
<a href="components/forms.html" class="block p-4 bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 hover:shadow-md transition">
<span class="text-2xl">📝</span>
<h3 class="mt-2 font-semibold">Forms</h3>
<p class="text-sm text-gray-500">Contact, login, newsletter</p>
</a>
<a href="components/ui-elements.html" class="block p-4 bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 hover:shadow-md transition">
<span class="text-2xl">🎨</span>
<h3 class="mt-2 font-semibold">UI Elements</h3>
<p class="text-sm text-gray-500">Buttons, badges, cards, alerts</p>
</a>
<a href="components/blog.html" class="block p-4 bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 hover:shadow-md transition">
<span class="text-2xl">📰</span>
<h3 class="mt-2 font-semibold">Blog</h3>
<p class="text-sm text-gray-500">Article cards, post grid</p>
</a>
<a href="components/footer.html" class="block p-4 bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 hover:shadow-md transition">
<span class="text-2xl">🦶</span>
<h3 class="mt-2 font-semibold">Footers</h3>
<p class="text-sm text-gray-500">Multi-column, simple</p>
</a>
</div>
<div class="mt-12 p-6 bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700">
<p class="text-sm text-gray-500">All components include dark mode support, are responsive, and use standard Tailwind utility classes.</p>
</div>
</div>
</body>
</html>