"use client";
import { Github, Mail, Send } from "lucide-react";
import Link from "next/link";
import { Navigation } from "../components/nav";
import { Card } from "../components/card";
const socials = [
{
icon: ,
href: "https://t.me/AderWolfKI",
label: "Telegram",
handle: "@AderWolfKI",
},
{
icon: ,
href: "mailto:dev@aderk.tech",
label: "Email",
handle: "dev@aderk.tech",
},
{
icon: ,
href: "https://github.com/AderKonstantin",
label: "Github",
handle: "AderKonstantin",
},
];
export default function Example() {
return (
{socials.map((s) => (
{s.icon}
{" "}
{s.handle}
{s.label}
))}
);
}