"use client"; import Image from "next/image"; import Link from "next/link"; import { Badge, Card, Typography } from "poyraz-ui/atoms"; import { Sheet, SheetContent, SheetTitle, SheetTrigger } from "poyraz-ui/molecules"; import { BOOKMARKS } from "@/data/bookmarks"; import { certificates } from "@/data/certificates"; import { EDUCATION } from "@/data/education"; import { EXPERIENCE } from "@/data/experience"; const ABOUT_TEXT = "Since I was introduced to software in middle school, I've been trying to learn and improve continuously. During high school, my enthusiasm for learning grew and I had the opportunity to explore various technologies in web development. Towards the end of high school, I stepped into the mobile world. Currently, I'm actively creating, developing, and most importantly, still learning."; const CERTIFICATE_PREVIEW = certificates.slice(0, 4); export function AboutContent() { return (
{ABOUT_TEXT}
{EDUCATION.map((item) => ( {item.title} {item.institution} {item.period} ))}
All Certificates
{certificates.map((item) => (
{item.name}
{item.name} {item.organization} {item.date}
))}
{EXPERIENCE.map((item) => ( {item.role} {item.company} {item.period} ))}
References Open the full reference list in a dedicated detail page. Volunteer & Community Timeline and contribution details in a separate detail page. Bookmarks
{BOOKMARKS.map((item) => (
{item.title} {item.tag}
{item.description} {item.href.replace("https://", "")}
))}
); }