File size: 3,860 Bytes
b47590d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>