grand commit

This commit is contained in:
2025-02-07 08:34:42 +02:00
parent f594f001f6
commit c6c34f0453
53 changed files with 1283 additions and 625 deletions

View File

@@ -1,9 +1,8 @@
'use client'
import {Menu as MenuIcon, X} from 'lucide-react'
import Link from 'next/link'
import {useState} from 'react'
import {Link} from '@/i18n/routing'
import {data} from '@/lib/data'
import {Button} from '@/ui/button'
@@ -21,7 +20,7 @@ export default function NavbarMenu() {
<div className={`hidden ${bp}:block w-full`}>
<div className='flex items-center justify-between'>
{data.headerMenus.map(item => (
<Link href={item.href + item.slug} className='' key={item.name}>
<Link href='/about-us' className='' key={item.name}>
{item.name}
</Link>
))}