Add AnwaltOverviewPage for lawyer overview; adjust team data and images; refactor Links structure; update affected components.

This commit is contained in:
2025-06-23 09:48:37 +09:00
parent ce710c9ad5
commit 62af95e0cd
8 changed files with 156 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
import Link from 'next/link';
import Links from "@/app/Links";
import Links from "@/data/Links";
export default function Footer() {
return (

View File

@@ -2,7 +2,7 @@
import {useEffect, useState} from 'react';
import Link from 'next/link';
import Links from '@/app/Links';
import Links from '@/data/Links';
import {usePathname} from 'next/navigation';
export default function Navbar() {
@@ -35,7 +35,7 @@ export default function Navbar() {
</Link>
<div className="space-x-6 text-base md:text-lg font-semibold">
<Link href={Links.about}>Über uns</Link>
<Link href={Links.legalFields}>Rechtsgebiete</Link>
<Link href={Links.lawyers}>Rechtsanwälte</Link>
</div>
</div>
</nav>