diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 07491b5..1ff4240 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,22 +6,10 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Open_Sans } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); export const metadata: Metadata = { title: "Get Fruity Cafe - Fresh Smoothies & Healthy Eats in Conyers, GA", @@ -56,6 +44,15 @@ export const metadata: Metadata = { }, }; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -64,9 +61,7 @@ export default function RootLayout({ return ( - + {children}