feat: Add new image assets and update components to use them, replacing the footer text logo with an image.

This commit is contained in:
1elle1
2026-02-03 22:11:21 +01:00
parent 578bb8edb3
commit 747e52133a
62 changed files with 74 additions and 32 deletions
+10 -2
View File
@@ -2,6 +2,7 @@
import { useState } from "react";
import Link from "next/link";
import Image from "next/image";
import { Menu, X, Phone } from "lucide-react";
const navigation = [
@@ -22,9 +23,16 @@ export function Header() {
{/* Logo */}
<Link
href="/"
className="text-xl font-semibold text-[var(--color-foreground)] hover:no-underline"
className="hover:no-underline"
>
<span className="text-[var(--color-primary)]">Tele</span>NetSystems
<Image
src="/images/logo/logo-systems-9fd0db14.png"
alt="TeleNetSystems Logo"
width={180}
height={40}
priority
className="h-8 md:h-10 w-auto"
/>
</Link>
{/* Desktop Navigation */}