font update
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { Poppins } from 'next/font/google';
|
||||
import { Montserrat } from 'next/font/google';
|
||||
|
||||
const poppins = Poppins({
|
||||
const poppins = Montserrat({
|
||||
weight: ['400', '500', '600', '700', '800'],
|
||||
variable: '--font-poppins',
|
||||
subsets: ['latin'],
|
||||
|
||||
@@ -47,19 +47,19 @@ const NavbarMobile = () => {
|
||||
variant="ghost"
|
||||
className={cn(
|
||||
'h-full w-full flex flex-col items-center justify-center gap-1 rounded-xl',
|
||||
isActive && 'text-blue-500',
|
||||
isActive && 'text-green-500',
|
||||
)}
|
||||
>
|
||||
<item.icon
|
||||
className={cn(
|
||||
'size-6 transition-colors',
|
||||
isActive ? 'text-blue-500' : 'text-gray-500',
|
||||
isActive ? 'text-green-500' : 'text-gray-500',
|
||||
)}
|
||||
/>
|
||||
<span
|
||||
className={cn(
|
||||
'text-[10px] font-medium',
|
||||
isActive ? 'text-blue-500' : 'text-gray-500',
|
||||
isActive ? 'text-green-500' : 'text-gray-500',
|
||||
)}
|
||||
>
|
||||
{item.label}
|
||||
|
||||
@@ -166,6 +166,7 @@ const Navbar = () => {
|
||||
height={20}
|
||||
className="w-10 h-fit"
|
||||
/>
|
||||
<p className="font-semibold">GASTRO</p>
|
||||
</div>
|
||||
<div className="w-full flex justify-end items-center lg:hidden gap-2">
|
||||
<Button
|
||||
|
||||
Reference in New Issue
Block a user