Skip to content

Commit 97da928

Browse files
SamarSamar
authored andcommitted
smol edits
1 parent ff6d3e1 commit 97da928

4 files changed

Lines changed: 36 additions & 3 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: "DND One-Shot Generator"
3+
description: "A playful tool that auto-generates one-shot D&D adventures with settings, characters, and conflicts."
4+
pubDate: "2025-12-02"
5+
heroImage: "/assets/images/lawa-hero.jpg"
6+
tags: ["Express", "Typescript", "Supabase", "API"]
7+
projectURL: "https://dnd-oneshot-generator-production.up.railway.app/"
8+
---
9+
10+
## Case Study Coming Soon
11+
12+
DND One-Shot Generator - A playful tool that auto-generates one-shot D&D adventures with settings, characters, and conflicts.
13+
14+
15+
---
16+

src/data/projects.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ export const personalProjects = [
88
"A playful tool that auto-generates one-shot D&D adventures with settings, characters, and conflicts.",
99
githubURL: "https://github.com/samkitkat/dnd-oneshot-generator",
1010
projectURL: "https://dnd-oneshot-generator-production.up.railway.app/",
11+
caseStudy: "/case-studies/dnd-gen",
1112
},
1213
{
13-
title: "GatorDo — Task Management App",
14+
title: "GatorDo — Todo App",
1415
role: "React · Supabase · Netlify",
1516
description:
1617
"A simple, friendly to-do app built for a course project, focused on clean UX and task clarity. Includes task creation, filtering, and persistent local storage.",

src/pages/about.astro

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import { workProjects } from "../data/projects";
4444
<p class="timeline-text">
4545
I joined <strong>Browserbase</strong> as a <strong
4646
>Contract Event Logistics Coordinator</strong
47-
>, to help plan and execute their 150-person <a class="about-link" href="https://x.com/samkitkat_/status/1935402776458326282?s=20">Series B launch event</a>.
47+
>, to help plan and execute their 150-person <strong><a class="about-link" href="https://x.com/samkitkat_/status/1935402776458326282?s=20">Series B launch event</a></strong>.
4848
</p>
4949
<p class="timeline-text">
5050
I coordinated vendors (entertainment, custom merch, security,
@@ -99,6 +99,12 @@ import { workProjects } from "../data/projects";
9999
</li>
100100
</ul>
101101
</p>
102+
<p class="timeline-text">
103+
March '24
104+
<ul class="timeline-text bullet-list">
105+
<li>I partnered with my friend Arthur to take part in a hack night hosted by Adam Chan from Weaviate. Together, we built and presented a project that won the event. You can watch our presentation <strong><a class="about-link" href="https://www.linkedin.com/posts/itsajchan_one-of-the-best-things-about-running-hack-ugcPost-7252038104100843520-hMQ2?utm_source=social_share_send&utm_medium=member_desktop_web&rcm=ACoAACDN28YBwzEuHNyma8a2VzowNy1EIvrtppU">here</a></strong>!</li>
106+
</ul>
107+
</p>
102108
</div>
103109
</div>
104110

src/pages/index.astro

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const featuredPosts = posts.slice(0, 2);
1616
<p class="eyebrow">♡ Welcome to My Portfolio ♡</p>
1717
<h1 id="hero-title" class="hero-title"></h1>
1818
<p class="hero-subtitle">
19-
Hi, I’m SamarI’m passionate about creating people-centered experiences
19+
Hi, I’m SamarI’m passionate about creating people-centered experiences
2020
that blend storytelling, technology, and community impact.
2121
</p>
2222
<p class="hero-subtitle">
@@ -147,6 +147,11 @@ const featuredPosts = posts.slice(0, 2);
147147
View project →
148148
</a>
149149
</div>
150+
{project.caseStudy && (
151+
<a href={project.caseStudy} class="project-link">
152+
View case study →
153+
</a>
154+
)}
150155
</article>
151156
))
152157
}
@@ -186,6 +191,11 @@ const featuredPosts = posts.slice(0, 2);
186191
View project →
187192
</a>
188193
</div>
194+
{work.caseStudy && (
195+
<a href={work.caseStudy} class="project-link">
196+
View case study →
197+
</a>
198+
)}
189199
</article>
190200
))
191201
}

0 commit comments

Comments
 (0)