File size: 3,391 Bytes
b4d488a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>
<head>
    <meta charset="UTF-8">
    <title>Projects - Aaravind</title>
    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
    <div class="background-3d"></div>
    
    <div class="sidebar">
        <a href="index.html">Home</a>
        <a href="about.html">About</a>
        <a href="projects.html" class="active">Projects</a>
        <a href="contact.html">Contact</a>
    </div>

    <div class="main">
        
    <h1>My Projects</h1>
    
        <div class="project-card">
            <h2>1. Image Analyzer</h2>
            <p>A beginner-friendly image processing tool that extracts useful details from uploaded images using AI.</p>
            <ul>
                <li>Automatically detects and describes image content</li>
                <li>Built using Python and basic computer vision</li>
            </ul>
            <p class="highlight">πŸ’‘ Great for exploring AI + image tools in a simple way.</p>
        </div>

        <!-- Project 2 -->
        <div class="project-card">
            <h2>2. Pet Name Analyzer</h2>
            <p>A fun and smart tool that gives meaning, uniqueness, and personality insights into any pet name.</p>
            <ul>
                <li>Input your pet's name β†’ get analysis</li>
                <li>Built using Gemini AI API or GPT</li>
                <li>Can suggest cute or unique names</li>
            </ul>
            <p class="highlight">πŸ’‘ Combines creativity with API power – fun and engaging!</p>
        </div>

        <!-- Project 3 -->
        <div class="project-card">
            <h2>3. Simple AI Jarvis Assistant</h2>
            <p>A voice-controlled assistant inspired by Iron Man’s J.A.R.V.I.S., built with Python and basic AI.</p>
            <ul>
                <li>Voice command with speech recognition</li>
                <li>Replies with speech (text-to-speech)</li>
                <li>Can search Google, play YouTube, and more</li>
            </ul>
            <p class="highlight">πŸ’‘ Great intro to automation, voice tech, and Python scripting.</p>
        </div>

        <!-- Project 4 -->
        <div class="project-card">
            <h2>4. LangChain Chat Bot</h2>
            <p>An intelligent chatbot built using LangChain for real-time, AI-powered conversation.</p>
            <ul>
                <li>Built using LangChain and Gemini/OpenAI</li>
                <li>Supports tools, memory, and Q&A</li>
                <li>Can be extended with knowledge base</li>
            </ul>
            <p class="highlight">πŸ’‘ Shows advanced use of LLMs and next-gen AI tools.</p>
        </div>

        <!-- Project 5 -->
        <div class="project-card">
            <h2>5. Online Shopping Website</h2>
            <p>A simple and functional e-commerce website with cart, filter, and user login.</p>
            <ul>
                <li>Flask + MongoDB backend</li>
                <li>Add to cart, remove, show total</li>
                <li>Login/Register and product search</li>
            </ul>
            <p class="highlight">πŸ’‘ Full-stack app – frontend, backend, database integration.</p>
        </div>

    </div>
 

</body>
</html>