import Link from "next/link"; import { Icon } from "@iconify/react"; import { Card, Typography } from "poyraz-ui/atoms"; const CONTACT_LINKS = [ { id: "email", label: "E-posta", value: "poyrazavsever@gmail.com", href: "mailto:poyrazavsever@gmail.com", icon: "mdi:email-outline", }, { id: "linkedin", label: "LinkedIn", value: "linkedin.com/in/poyrazavsever", href: "https://www.linkedin.com/in/poyrazavsever/", icon: "mdi:linkedin", }, { id: "instagram", label: "Instagram", value: "@poyraz_avsever", href: "https://instagram.com/poyraz_avsever", icon: "mdi:instagram", }, ] as const; export function ContactContent() { return (
{CONTACT_LINKS.map((item) => (
{item.label} {item.value}
))}
); }