diff --git a/app/globals.css b/app/globals.css index a3e3448..6c10fe4 100644 --- a/app/globals.css +++ b/app/globals.css @@ -12,4 +12,7 @@ .box { @apply max-w-6xl mx-auto font-jura; } + .box-full { + @apply w-full px-6 sm:px-20 lg:px-32; + } } diff --git a/components/navbar.tsx b/components/navbar.tsx index f92a102..2551cb2 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -1,9 +1,36 @@ +'use client'; +import { cn } from '@/lib/utils'; import Image from 'next/image'; +import { usePathname } from 'next/navigation'; +import Link from 'next/link'; export default function Navbar() { + const pathname = usePathname(); + return ( -