Changed contacts to my own

This commit is contained in:
AderKonstantin 2025-05-15 22:58:04 +03:00
parent 181595f195
commit 12d9ec90a1

View File

@ -1,27 +1,27 @@
"use client"; "use client";
import { Github, Mail, Twitter } from "lucide-react"; import { Github, Mail, Send } from "lucide-react";
import Link from "next/link"; import Link from "next/link";
import { Navigation } from "../components/nav"; import { Navigation } from "../components/nav";
import { Card } from "../components/card"; import { Card } from "../components/card";
const socials = [ const socials = [
{ {
icon: <Twitter size={20} />, icon: <Send size={20} />,
href: "https://twitter.com/chronark_", href: "https://t.me/AderWolfKI",
label: "Twitter", label: "Telegram",
handle: "@chronark_", handle: "@AderWolfKI",
}, },
{ {
icon: <Mail size={20} />, icon: <Mail size={20} />,
href: "mailto:dev@chronark.com", href: "mailto:dev@aderk.tech",
label: "Email", label: "Email",
handle: "dev@chronark.com", handle: "dev@aderk.tech",
}, },
{ {
icon: <Github size={20} />, icon: <Github size={20} />,
href: "https://github.com/chronark", href: "https://github.com/AderKonstantin",
label: "Github", label: "Github",
handle: "chronark", handle: "AderKonstantin",
}, },
]; ];