Jagged-divider

This commit is contained in:
2025-09-10 14:41:36 +02:00
parent b3064b33d9
commit 33d180bf22
16 changed files with 903 additions and 98 deletions

View File

@@ -6,10 +6,11 @@ const Navigation = () => {
const [isOpen, setIsOpen] = useState(false);
const navItems = [
{ name: "Home", href: "#home" },
{ name: "Services", href: "#services" },
{ name: "About", href: "#about" },
{ name: "Contact", href: "#contact" },
{ name: "Home", href: "/" },
{ name: "What We Do", href: "/what-we-do" },
{ name: "Methods", href: "/methods" },
{ name: "Employee Notices", href: "/employee-notice" },
{ name: "Contact", href: "/#contact" },
];
return (