fitfusion-fervor / index.html
Inspireoriginal's picture
delet this start new project
d7b2b52 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Project</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="bg-gray-100">
<header class="bg-white shadow-sm">
<div class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="circle" class="text-blue-600"></i>
<span class="font-bold text-lg">NewProject</span>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="text-gray-700 hover:text-blue-600">Home</a>
<a href="#" class="text-gray-700 hover:text-blue-600">About</a>
<a href="#" class="text-gray-700 hover:text-blue-600">Services</a>
<a href="#" class="text-gray-700 hover:text-blue-600">Contact</a>
</nav>
<button class="md:hidden text-gray-700">
<i data-feather="menu"></i>
</button>
</div>
</div>
</header>
<main class="container mx-auto px-6 py-12">
<section class="text-center mb-16">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Welcome to New Project</h1>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">A fresh start for your next big idea</p>
<div class="mt-8">
<button class="bg-blue-600 text-white px-8 py-3 rounded-lg font-medium hover:bg-blue-700 transition-colors">
Get Started
</button>
</div>
</section>
<section class="grid md:grid-cols-3 gap-8 mb-16">
<div class="bg-white p-8 rounded-lg shadow-md">
<div class="text-blue-600 mb-4">
<i data-feather="zap" class="w-8 h-8"></i>
</div>
<h2 class="text-xl font-bold mb-3">Fast</h2>
<p class="text-gray-600">Lightning quick performance for all your needs.</p>
</div>
<div class="bg-white p-8 rounded-lg shadow-md">
<div class="text-blue-600 mb-4">
<i data-feather="shield" class="w-8 h-8"></i>
</div>
<h2 class="text-xl font-bold mb-3">Secure</h2>
<p class="text-gray-600">Bank-level security to protect your data.</p>
</div>
<div class="bg-white p-8 rounded-lg shadow-md">
<div class="text-blue-600 mb-4">
<i data-feather="settings" class="w-8 h-8"></i>
</div>
<h2 class="text-xl font-bold mb-3">Customizable</h2>
<p class="text-gray-600">Tailor it to fit your exact requirements.</p>
</div>
</section>
</main>
<footer class="bg-gray-800 text-white py-12">
<div class="container mx-auto px-6">
<div class="text-center">
<p>&copy; 2023 New Project. All rights reserved.</p>
<div class="flex justify-center space-x-6 mt-4">
<a href="#" class="hover:text-blue-400"><i data-feather="twitter"></i></a>
<a href="#" class="hover:text-blue-400"><i data-feather="instagram"></i></a>
<a href="#" class="hover:text-blue-400"><i data-feather="github"></i></a>
</div>
</div>
</div>
</footer>
<script>
feather.replace();
</script>
</body>
</html>