-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (116 loc) · 5.1 KB
/
Copy pathindex.html
File metadata and controls
122 lines (116 loc) · 5.1 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="AI project portfolio by Vanessa: experiments, dashboards, agents, workflows, and creative tools." />
<meta property="og:title" content="Vanessa's AI Project Portfolio" />
<meta property="og:description" content="A living showcase of AI projects, prototypes, dashboards, and agent-powered workflows." />
<meta property="og:type" content="website" />
<title>Vanessa · AI Project Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="orb orb-one"></div>
<div class="orb orb-two"></div>
<header class="site-header">
<a class="brand" href="#top" aria-label="Vanessa AI Portfolio home">
<span class="brand-mark">V</span>
<span>AI Portfolio</span>
</a>
<nav class="nav" aria-label="Primary navigation">
<a href="#projects">Projects</a>
<a href="#systems">Systems</a>
<a href="#add-project">Add a Project</a>
<a class="nav-button" href="https://github.com/awsm-vanessa" target="_blank" rel="noreferrer">GitHub</a>
</nav>
</header>
<main id="top">
<section class="hero">
<div class="hero-copy">
<p class="eyebrow">Living archive · AI experiments · shipped prototypes</p>
<h1>Vanessa's AI project showcase.</h1>
<p class="hero-lede">
A polished home base for every dashboard, agent, workflow, creative experiment, and business idea you build with AI.
</p>
<div class="hero-actions">
<a class="button primary" href="#projects">View projects</a>
<a class="button secondary" href="https://github.com/awsm-vanessa?tab=repositories" target="_blank" rel="noreferrer">Browse repos</a>
</div>
</div>
<aside class="hero-card" aria-label="Portfolio summary">
<div class="status-pill"><span></span> Portfolio online</div>
<div class="metric-grid">
<div>
<strong id="projectCount">1</strong>
<span>Featured project</span>
</div>
<div>
<strong>∞</strong>
<span>Room to grow</span>
</div>
<div>
<strong>GitHub</strong>
<span>Pages powered</span>
</div>
</div>
</aside>
</section>
<section class="section" id="projects">
<div class="section-heading">
<p class="eyebrow">Showcase</p>
<h2>Featured AI projects</h2>
<p>Each card can link to a live demo, source repo, screenshots, notes, and future case studies.</p>
</div>
<div class="project-grid" id="projectGrid"></div>
</section>
<section class="section split" id="systems">
<div>
<p class="eyebrow">Portfolio structure</p>
<h2>Designed to hold everything you create next.</h2>
<p>
This site is intentionally simple to maintain: add future projects to one small JavaScript data file and they appear as cards automatically.
</p>
</div>
<div class="system-list">
<article>
<span>01</span>
<h3>Live demos</h3>
<p>Link straight to GitHub Pages previews, hosted apps, prototypes, or videos.</p>
</article>
<article>
<span>02</span>
<h3>Source repos</h3>
<p>Keep code organized under your GitHub account with each project easy to find.</p>
</article>
<article>
<span>03</span>
<h3>Case-study ready</h3>
<p>Use tags, status labels, and descriptions to explain the problem, AI role, and outcome.</p>
</article>
</div>
</section>
<section class="section add-project" id="add-project">
<div>
<p class="eyebrow">Future-proof</p>
<h2>How we’ll add your next project</h2>
</div>
<ol class="steps">
<li><strong>Build or upload</strong> the new AI project in its own repo.</li>
<li><strong>Publish a demo</strong> with GitHub Pages or another host.</li>
<li><strong>Add one object</strong> to <code>projects.js</code> with title, links, description, and tags.</li>
<li><strong>Push to GitHub</strong> and this portfolio updates online.</li>
</ol>
</section>
</main>
<footer class="footer">
<p>Built as a living AI project portfolio for Vanessa.</p>
<a href="https://github.com/awsm-vanessa/awsm-vanessa.github.io" target="_blank" rel="noreferrer">Portfolio source</a>
</footer>
<script src="projects.js"></script>
<script src="script.js"></script>
</body>
</html>