From 54eabc03f7efccef2e512fe1d8ef5c8909765bb7 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:09:46 +0000 Subject: [PATCH] Seed: portfolio template (18 files) --- src/pages/About.tsx | 146 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 src/pages/About.tsx diff --git a/src/pages/About.tsx b/src/pages/About.tsx new file mode 100644 index 0000000..f8bd5b6 --- /dev/null +++ b/src/pages/About.tsx @@ -0,0 +1,146 @@ +import { Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Badge } from "@/components/ui/badge"; +import { Separator } from "@/components/ui/separator"; +import { + Download, Award, Briefcase, GraduationCap, ArrowRight +} from "lucide-react"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + +const stats = [ + { value: "8+", label: "Years Experience" }, + { value: "50+", label: "Projects Completed" }, + { value: "30+", label: "Happy Clients" }, +]; + +const experience = [ + { company: "TechVentures Inc.", role: "Senior Product Designer", years: "2022: Present", desc: "Leading design for the core product suite, managing a team of 4 designers, and establishing the company design system." }, + { company: "DesignLab Studio", role: "UI/UX Designer & Developer", years: "2020: 2022", desc: "Designed and built web applications for Fortune 500 clients. Led the frontend development of 12+ projects." }, + { company: "Pixel Perfect Agency", role: "Junior Designer", years: "2018: 2020", desc: "Crafted visual identities, marketing materials, and responsive websites for startups and SMBs." }, + { company: "Freelance", role: "Web Designer", years: "2016: 2018", desc: "Built custom WordPress and React sites for local businesses while completing university studies." }, +]; + +const awards = [ + { title: "Best Portfolio Design", org: "Awwwards", year: "2024" }, + { title: "Design Excellence", org: "CSS Design Awards", year: "2023" }, + { title: "Top 10 Designers", org: "Dribbble", year: "2023" }, +]; + +export default function AboutPage() { + return ( +
+
+ + {/* ── HERO ── */} +
+
+
+

About Me

+

I am a multidisciplinary designer and developer with 8+ years of experience crafting digital products that people love. I specialize in bridging the gap between design and engineering.

+

When I am not pushing pixels or writing code, you will find me exploring national parks, experimenting with film photography, or contributing to open-source projects.

+
+ {stats.map((s, i) => ( +
+
{s.value}
+
{s.label}
+
+ ))} +
+ +
+
+
+
+
+
+
+ {("Alex Rivera").split(" ").map((n: string) => n[0]).join("")} +
+
+
+
+
+ + {/* ── EXPERIENCE ── */} +
+
+

+ Experience +

+
+ {experience.map((e, i) => ( +
+
+
+

{e.role}

+ {e.years} +
+
{e.company}
+

{e.desc}

+
+ ))} +
+
+
+ + {/* ── AWARDS ── */} +
+
+

+ Recognition +

+
+ {awards.map((a, i) => ( + + + {a.year} +

{a.title}

+

{a.org}

+
+
+ ))} +
+
+
+ + {/* ── EDUCATION ── */} +
+
+

+ Education +

+
+
+

B.S. Computer Science

+
Stanford University
+
2012: 2016
+
+ +
+

UX Design Certificate

+
Google / Coursera
+
2018
+
+
+
+
+ + {/* ── CTA ── */} +
+
+

Interested in working together?

+

I'm always open to new opportunities and collaborations.

+ +
+
+ +
+ ); +} \ No newline at end of file