bytebard-nexus / index.html
authorizedcabal's picture
Change the header to a black NAV bar with the tabs right aligned
b47590d 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>CodeCanvas | Developer Portfolio</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: '#1a1a1a',
secondary: '#404040',
accent: '#737373'
}
}
}
}
</script>
</head>
<body class="bg-white text-primary font-mono antialiased">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-16">
<!-- Hero Section -->
<section class="min-h-screen flex flex-col justify-center items-center text-center">
<div class="max-w-4xl mx-auto">
<h1 class="text-5xl md:text-7xl font-bold mb-6 tracking-tight">BUILDING DIGITAL FOUNDATIONS</h1>
<p class="text-xl md:text-2xl text-secondary mb-12 leading-relaxed">
Machine Learning Architect | Computer Science Researcher | Technical Writer
</p>
<div class="flex flex-wrap justify-center gap-4">
<a href="#academics" class="px-8 py-3 border-2 border-primary text-primary font-bold hover:bg-primary hover:text-white transition-all">Explore Work</a>
<a href="#contact" class="px-8 py-3 bg-primary text-white font-bold hover:bg-secondary transition-all">Get In Touch</a>
</div>
</div>
</section>
<!-- Quick Links -->
<section class="py-20 grid grid-cols-1 md:grid-cols-3 gap-8">
<a href="academics.html" class="group border-2 border-primary p-6 hover:bg-primary transition-all">
<div class="flex items-center mb-4">
<i data-feather="book" class="w-8 h-8 mr-3 group-hover:text-white"></i>
<h3 class="text-2xl font-bold group-hover:text-white">Academics</h3>
</div>
<p class="text-secondary group-hover:text-gray-300">Research publications, coursework, and academic achievements</p>
</a>
<a href="experience.html" class="group border-2 border-primary p-6 hover:bg-primary transition-all">
<div class="flex items-center mb-4">
<i data-feather="briefcase" class="w-8 h-8 mr-3 group-hover:text-white"></i>
<h3 class="text-2xl font-bold group-hover:text-white">Experience</h3>
</div>
<p class="text-secondary group-hover:text-gray-300">Professional journey and enterprise ML applications</p>
</a>
<a href="blogs.html" class="group border-2 border-primary p-6 hover:bg-primary transition-all">
<div class="flex items-center mb-4">
<i data-feather="edit" class="w-8 h-8 mr-3 group-hover:text-white"></i>
<h3 class="text-2xl font-bold group-hover:text-white">Blogs</h3>
</div>
<p class="text-secondary group-hover:text-gray-300">Technical writings and research insights</p>
</a>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>