diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9bc62d9..184dd06 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,16 +1,23 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import "./styles/variables.css"; import "./globals.css"; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); export const metadata: Metadata = { title: "Belle Precisions - Permanent Makeup in Hot Springs, AR", description: "Professional permanent eyeliner enhancement and cosmetic makeup services in Hot Springs, Arkansas. 5-star rated, women-owned clinic specializing in precision beauty treatments." }; +const publicSans = Public_Sans({ + variable: "--font-public-sans", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: { @@ -18,7 +25,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}