added phone number and updated some things

This commit is contained in:
2026-08-31 12:03:56 +02:00
parent a4cc12d763
commit d6dbc71071
4 changed files with 18 additions and 20 deletions
+5 -3
View File
@@ -1,5 +1,5 @@
import Link from "next/link";
import { Mail } from "lucide-react";
import { Mail, Phone } from "lucide-react";
import { FaLinkedin } from "react-icons/fa6";
import { SiGitea } from "react-icons/si";
import type { Locale, Dictionary } from "@/lib/dictionaries";
@@ -23,6 +23,7 @@ export default function Footer({ locale, dict }: FooterProps) {
[dict.footer.connect]: [
{ label: "Source Code", href: "https://git.ksan.dev/ksan", external: true },
{ label: "Email", href: "mailto:contact@ksan.dev", external: true },
{ label: "+387 66 644 094", href: "tel:+38766644094", external: true },
{ label: "LinkedIn", href: "https://www.linkedin.com/in/%C4%91or%C4%91e-k%C5%A1an-886871266", external: true },
],
};
@@ -30,6 +31,7 @@ export default function Footer({ locale, dict }: FooterProps) {
const socials = [
{ icon: SiGitea, href: "https://git.ksan.dev/ksan", label: "Gitea" },
{ icon: Mail, href: "mailto:contact@ksan.dev", label: "Email" },
{ icon: Phone, href: "tel:+38766644094", label: "Phone" },
{ icon: FaLinkedin, href: "https://www.linkedin.com/in/%C4%91or%C4%91e-k%C5%A1an-886871266/", label: "LinkedIn" },
];
@@ -84,8 +86,8 @@ export default function Footer({ locale, dict }: FooterProps) {
{"external" in link && link.external ? (
<a
href={link.href}
target="_blank"
rel="noopener noreferrer"
target={link.href.startsWith("http") ? "_blank" : undefined}
rel={link.href.startsWith("http") ? "noopener noreferrer" : undefined}
className="text-sm text-text-secondary transition-colors hover:text-text-primary"
>
{link.label}