feat: add references and volunteer community sections with detailed content

This commit is contained in:
poyrazavsever
2026-03-10 20:53:31 +03:00
parent d732f9b1c3
commit d262b391c9
9 changed files with 302 additions and 36 deletions
+52
View File
@@ -0,0 +1,52 @@
export type BookmarkItem = {
id: string;
title: string;
href: string;
description: string;
tag: string;
};
export const BOOKMARKS: BookmarkItem[] = [
{
id: "bookmark-poyraz-ui",
title: "Poyraz UI",
href: "https://ui.poyrazavsever.com",
description: "Component docs and examples for the design system used in this portfolio.",
tag: "UI Kit",
},
{
id: "bookmark-reactive-switcher",
title: "Reactive Switcher",
href: "https://reactive-switcher.vercel.app",
description: "Theme switching package docs for scalable light and dark mode setup.",
tag: "Theming",
},
{
id: "bookmark-next-docs",
title: "Next.js Docs",
href: "https://nextjs.org/docs",
description: "Official App Router and rendering strategy reference.",
tag: "Framework",
},
{
id: "bookmark-tailwind-docs",
title: "Tailwind CSS Docs",
href: "https://tailwindcss.com/docs",
description: "Utility classes and token customization reference.",
tag: "CSS",
},
{
id: "bookmark-vercel",
title: "Vercel",
href: "https://vercel.com/docs",
description: "Deployment and performance optimization references.",
tag: "Deploy",
},
{
id: "bookmark-github",
title: "GitHub",
href: "https://github.com/poyrazavsever",
description: "Open-source repositories and shipped experiments.",
tag: "Profile",
},
];
+55
View File
@@ -0,0 +1,55 @@
export type VolunteerCommunityItem = {
id: string;
title: string;
timeline: string;
link?: string;
focus: string;
};
export const VOLUNTEER_COMMUNITY_ITEMS: VolunteerCommunityItem[] = [
{
id: "youtube",
title: "YouTube",
timeline: "2025 - Present",
link: "https://youtube.com/@poyrazavsever",
focus:
"Publishing creator economy breakdowns and tutorials to help new devs ship their first projects.",
},
{
id: "instagram",
title: "Instagram",
timeline: "2025 - Present",
link: "https://instagram.com/poyrazavsever",
focus:
"Sharing behind-the-scenes workflow notes and short-form content tips for junior creatives.",
},
{
id: "ostim-debate-club",
title: "Ostim Debate Club",
timeline: "2024 - Present",
link: "https://ostimmunazara.com",
focus: "Moderating weekly debate sessions and keeping the website content updated.",
},
{
id: "huawei-student-developers",
title: "Huawei Student Developers",
timeline: "2025 - 2026",
link: "https://hsdostim.tech",
focus:
"Organizing campus events around Huawei's developer tooling and mentoring first-time contributors.",
},
{
id: "google-developer-student-club",
title: "Google Developer Student Club",
timeline: "2025 - 2025",
focus:
"Served as an event facilitator for one term, covering Flutter basics and Firebase quickstarts.",
},
{
id: "ottoqa-technology-team",
title: "Ottoqa Technology Team",
timeline: "2024 - Present",
focus:
"Supporting robotics and embedded systems experiments with documentation and prototype reviews.",
},
];