diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02f733..70c6f34 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,13 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); - export const metadata: Metadata = { title: "The Shift Marketing | Local SEO & Social Media Services South Florida", description: "Get more leads and calls for your South Florida business with proven SEO and social media marketing services from The Shift. 300% average lead increase guaranteed.", keywords: "SEO company South Florida, social media marketing, digital marketing agency, Pompano Beach, Fort Lauderdale, local SEO services", robots: { index: true, @@ -43,9 +32,7 @@ export default function RootLayout({ return ( - + {children}