-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclaude.html
86 lines (83 loc) · 4.16 KB
/
claude.html
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
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Tailwind Website</title>
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.js"></script>
</head>
<body class="bg-gray-100">
<!-- Navigation -->
<nav class="bg-white shadow-lg">
<div class="max-w-6xl mx-auto px-4">
<div class="flex justify-between">
<div class="flex space-x-7">
<div>
<a href="#" class="flex items-center py-4">
<span class="font-semibold text-gray-500 text-lg">Company</span>
</a>
</div>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="py-4 px-2 text-gray-500 font-semibold hover:text-blue-500 transition duration-300">Home</a>
<a href="#" class="py-4 px-2 text-gray-500 font-semibold hover:text-blue-500 transition duration-300">About</a>
<a href="#" class="py-4 px-2 text-gray-500 font-semibold hover:text-blue-500 transition duration-300">Services</a>
<a href="#" class="py-4 px-2 text-gray-500 font-semibold hover:text-blue-500 transition duration-300">Contact</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="bg-white py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl tracking-tight font-extrabold text-gray-900 sm:text-5xl md:text-6xl">
<span class="block">Welcome to Our</span>
<span class="block text-blue-600">Modern Website</span>
</h1>
<p class="mt-3 max-w-md mx-auto text-base text-gray-500 sm:text-lg md:mt-5 md:text-xl md:max-w-3xl">
Build beautiful websites faster with Tailwind CSS. This template helps you create modern, responsive layouts quickly.
</p>
<div class="mt-5 max-w-md mx-auto sm:flex sm:justify-center md:mt-8">
<div class="rounded-md shadow">
<a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 md:py-4 md:text-lg md:px-10">
Get Started
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div class="py-12 bg-gray-100">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 gap-8 md:grid-cols-3">
<!-- Feature 1 -->
<div class="bg-white rounded-lg shadow-lg p-6">
<div class="text-2xl font-bold text-blue-600 mb-4">Fast</div>
<p class="text-gray-600">Lightning fast performance optimized for modern web standards.</p>
</div>
<!-- Feature 2 -->
<div class="bg-white rounded-lg shadow-lg p-6">
<div class="text-2xl font-bold text-blue-600 mb-4">Responsive</div>
<p class="text-gray-600">Fully responsive design that works on all devices and screen sizes.</p>
</div>
<!-- Feature 3 -->
<div class="bg-white rounded-lg shadow-lg p-6">
<div class="text-2xl font-bold text-blue-600 mb-4">Modern</div>
<p class="text-gray-600">Built with modern technologies and best practices in mind.</p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="text-center">
<p class="text-base text-gray-400">© 2025 Company. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>