Skip to content

Commit 0e8a2f7

Browse files
committed
fix: added Education section
1 parent a1c335c commit 0e8a2f7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/app/page.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ import Footer from '@/components/Footer'
55
import About from '@/components/About'
66
import { Experiences } from '@/components/Experiences'
77
import { Projects } from '@/components/Projects'
8+
import { Education } from '@/components/Education'
89
import Navbar from '@/components/Navbar';
910

1011
export default function Portfolio() {
1112
const experiencesArray = [
1213
{
1314
companyLogo: "/images/cactuscreatives.png",
1415
companyName: "Cactus Creatives",
16+
companyLink: "https://cactuscreatives.com/",
1517
position: "Software Developer Intern, Core",
1618
period: "May 2024 - August 2024",
1719
responsibilities: [
@@ -24,6 +26,7 @@ export default function Portfolio() {
2426
{
2527
companyLogo: "/images/cactuscreatives.png",
2628
companyName: "Cactus Creatives",
29+
companyLink: "https://cactuscreatives.com/",
2730
position: "Python Developer Intern",
2831
period: "May 2023 - August 2023",
2932
responsibilities: [
@@ -62,13 +65,13 @@ export default function Portfolio() {
6265
},
6366
{
6467
title: "Chess (CS246 Final Project)",
65-
description: "Developed a C++ chess engine, innovating three-way and four-way variants, and creating test suites and GUI in a Linux environment with CMake and XWindows.",
68+
description: "Developed a C++ chess engine, innovating 3-way and 4-way variants, and creating test suites and GUI in a Linux environment with CMake and XWindows.",
6669
repo: false,
6770
live: false
6871
},
6972
{
7073
title: "EcoWiz",
71-
description: "Developed a full-stack garbage classification app with a React frontend, Flask backend, and an 80%-accurate multimodal model using ResNet-50 CNN and YOLOv8.",
74+
description: "Developed a full-stack garbage classification app with React/Flask, and an 80% accurate multimodal model using ResNet-50 CNN and YOLOv8.",
7275
repo: true,
7376
repoUrl: "https://github.com/karman103/DeltaHacksX",
7477
live: false
@@ -92,6 +95,7 @@ export default function Portfolio() {
9295
<main className="container mx-auto px-4 py-8 z-1">
9396
<About />
9497
<Experiences arr={experiencesArray}/>
98+
<Education />
9599
<Projects arr={projectsArray}/>
96100
</main>
97101
<Footer />

0 commit comments

Comments
 (0)