Crossberry's picture
Continu
d5de1f9 verified
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeCollabX - Where Devs Unite!</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
500: '#24292e',
600: '#1b1f23',
700: '#121417'
},
secondary: {
500: '#6a737d',
400: '#8b949e',
300: '#b1bac4'
},
accent: {
500: '#2ea44f',
600: '#22863d',
700: '#176f2c'
}
}
}
}
}
</script>
<script src="components/navbar.js"></script>
<script src="components/hero.js"></script>
<script src="components/features.js"></script>
<script src="components/testimonials.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-50 text-gray-800 font-sans antialiased">
<custom-navbar></custom-navbar>
<custom-hero></custom-hero>
<custom-features></custom-features>
<custom-testimonials></custom-testimonials>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>