From 12d9ec90a13ada738f4aed332a8828048f061938 Mon Sep 17 00:00:00 2001 From: AderKonstantin Date: Thu, 15 May 2025 22:58:04 +0300 Subject: [PATCH] Changed contacts to my own --- app/contact/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/contact/page.tsx b/app/contact/page.tsx index e487d6e..d65a418 100644 --- a/app/contact/page.tsx +++ b/app/contact/page.tsx @@ -1,27 +1,27 @@ "use client"; -import { Github, Mail, Twitter } from "lucide-react"; +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://twitter.com/chronark_", - label: "Twitter", - handle: "@chronark_", + icon: , + href: "https://t.me/AderWolfKI", + label: "Telegram", + handle: "@AderWolfKI", }, { icon: , - href: "mailto:dev@chronark.com", + href: "mailto:dev@aderk.tech", label: "Email", - handle: "dev@chronark.com", + handle: "dev@aderk.tech", }, { icon: , - href: "https://github.com/chronark", + href: "https://github.com/AderKonstantin", label: "Github", - handle: "chronark", + handle: "AderKonstantin", }, ];