diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 381a6c0..5380479 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,14 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import localFont from "next/font/local"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const geistSans = localFont({ + src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"}); +const geistMono = localFont({ + src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"}); export const metadata: Metadata = { - title: "RevFlow Marketing | Local Business Growth & Google Rankings", description: "Get your local business to Google's top #3 in 90-120 days. SEO, paid ads, website design, and content creation." -}; + title: "RevFlow Marketing - Local Business Growth & SEO", description: "Get your business to Google's top #3 in 90-120 days. RevFlow Marketing offers comprehensive SEO, ads management, website development, and content creation services."}; export default function RootLayout({ children, @@ -15,7 +17,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +