font update

This commit is contained in:
Samandar Turgunboyev
2025-12-17 16:22:01 +05:00
parent d934fcca13
commit 0c054bcd17
3 changed files with 6 additions and 5 deletions

View File

@@ -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'], weight: ['400', '500', '600', '700', '800'],
variable: '--font-poppins', variable: '--font-poppins',
subsets: ['latin'], subsets: ['latin'],

View File

@@ -47,19 +47,19 @@ const NavbarMobile = () => {
variant="ghost" variant="ghost"
className={cn( className={cn(
'h-full w-full flex flex-col items-center justify-center gap-1 rounded-xl', '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 <item.icon
className={cn( className={cn(
'size-6 transition-colors', 'size-6 transition-colors',
isActive ? 'text-blue-500' : 'text-gray-500', isActive ? 'text-green-500' : 'text-gray-500',
)} )}
/> />
<span <span
className={cn( className={cn(
'text-[10px] font-medium', 'text-[10px] font-medium',
isActive ? 'text-blue-500' : 'text-gray-500', isActive ? 'text-green-500' : 'text-gray-500',
)} )}
> >
{item.label} {item.label}

View File

@@ -166,6 +166,7 @@ const Navbar = () => {
height={20} height={20}
className="w-10 h-fit" className="w-10 h-fit"
/> />
<p className="font-semibold">GASTRO</p>
</div> </div>
<div className="w-full flex justify-end items-center lg:hidden gap-2"> <div className="w-full flex justify-end items-center lg:hidden gap-2">
<Button <Button