diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 821c15b..b824249 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,15 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Inter } from "next/font/google"; import "./styles/base.css"; import "./globals.css"; -const geist = Geist({ - variable: "--font-sans", subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-mono", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Precision Lead Systems - Web Design & Performance Marketing", description: "Web design and performance marketing for growing businesses. Custom websites, organic growth, and paid advertising with commission-based pricing."}; + title: "Precision Lead Systems - Web Design & Performance Marketing", description: "Web design and performance marketing for growing businesses. Custom websites, organic growth, and paid advertising with commission-based pricing." +}; export default function RootLayout({ children, @@ -21,7 +18,7 @@ export default function RootLayout({ }) { return ( - + {children}