diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ec61696..776d5f8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Nunito_Sans } from "next/font/google"; +import { Syne, DM_Sans } from "next/font/google"; @@ -14,8 +15,13 @@ export const metadata: Metadata = { description: 'Order snacks, drinks & essentials delivered in 20 minutes. No minimum order. Available 24/7 in major cities. Perfect for students & night shift workers.', }; -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], + +const syne = Syne({ + variable: "--font-syne", subsets: ["latin"], + weight: ["400", "500", "600", "700", "800"], +}); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export default function RootLayout({ @@ -26,7 +32,7 @@ export default function RootLayout({ return ( - + {children}