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
+9 -2
View File
@@ -1,4 +1,5 @@
import Link from "next/link";
import Image from "next/image";
import { Phone, Mail, MapPin } from "lucide-react";
const footerLinks = {
@@ -28,9 +29,15 @@ export function Footer() {
<div className="stack-md">
<Link
href="/"
className="text-xl font-semibold text-[var(--color-background)] hover:no-underline"
className="hover:no-underline"
>
<span className="text-[var(--color-primary)]">Tele</span>NetSystems
<Image
src="/images/logo/logo-weiss-ffa4cbf6.png"
alt="TeleNetSystems Logo"
width={160}
height={36}
className="h-8 w-auto"
/>
</Link>
<p className="text-sm opacity-80">
Ihr regionaler Telekom- und IT-Partner in Tirol.
+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 */}