diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 47771df..0cce555 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "RevFlow Marketing | Local Business Rankings & Growth Strategy", description: "Get your local business to Google's top #3 in 90-120 days. RevFlow Marketing offers comprehensive services: SEO, ads, web design, content creation, and AI support.", keywords: "local SEO, Google rankings, digital marketing, local business growth, web design, paid ads, content creation", metadataBase: new URL("https://revflowmarketing.com"), - alternates: { - canonical: "https://revflowmarketing.com" - }, - openGraph: { - title: "RevFlow Marketing | Dominate Your Local Market", description: "Professional marketing agency specializing in getting local businesses to Google's top #3 rankings.", siteName: "RevFlow Marketing", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWlyBSSo3D2vFeOGeN5xqvt1Np/a-dynamic-marketing-agency-dashboard-sho-1772717042236-4d6f35cc.png", alt: "RevFlow Marketing - Professional Marketing Solutions" - } - ] - }, - twitter: { - card: "summary_large_image", title: "RevFlow Marketing | Local Business Growth", description: "Get your business ranking in Google's top #3 within 90-120 days", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWlyBSSo3D2vFeOGeN5xqvt1Np/a-dynamic-marketing-agency-dashboard-sho-1772717042236-4d6f35cc.png"] - }, - robots: { - index: true, - follow: true - } -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}