diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0fbe0aa..aef78c8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,42 +1,17 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "RevFlow | Guaranteed Top #3 Local SEO in 90 Days", description: "RevFlow guarantees your local business reaches top #3 Google rankings within 90-120 days. Results-driven local SEO agency with proven track record.", keywords: "local SEO, Google rankings, local business marketing, guaranteed SEO, top 3 rankings", metadataBase: new URL("https://revflow.io"), - alternates: { - canonical: "https://revflow.io"}, - openGraph: { - title: "RevFlow | Guaranteed Top #3 Local Rankings", description: "Get your local business to top #3 on Google in 90-120 days. Guaranteed results or we work for free.", url: "https://revflow.io", siteName: "RevFlow", type: "website"}, - twitter: { - card: "summary_large_image", title: "RevFlow | Guaranteed Local SEO Results", description: "Top #3 Google rankings guaranteed in 90 days for local businesses"}, -}; + title: "RevFlow - Guaranteed Top 3 Local Rankings", description: "RevFlow guarantees your business reaches the top #3 rankings on Google Local Search within 90-120 days. The only local SEO agency that puts results first with a proven track record."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}