feat(Navbar): wire anchor links to page sections
Werkzeuge→#werkzeuge, Blog→#blog, Über Björn→#ueber-bjoern. Shop remains /shop (no matching section). Added matching id attributes to Tools, Blog and About section root elements. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -2,9 +2,9 @@ import Link from "next/link";
|
||||
import Image from "next/image";
|
||||
|
||||
const navLinks = [
|
||||
{ label: "Werkzeuge", href: "/werkzeuge" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "Über Björn", href: "/ueber-bjoern" },
|
||||
{ label: "Werkzeuge", href: "#werkzeuge" },
|
||||
{ label: "Blog", href: "#blog" },
|
||||
{ label: "Über Björn", href: "#ueber-bjoern" },
|
||||
{ label: "Shop", href: "/shop" },
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user