diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1c0da12..b57a338 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; +import { Lora, Inter } 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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); +const lora = Lora({ subsets: ["latin"] }); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "FGA Growth | Predictable Revenue Through Expert Paid Ads", description: "Scale your SaaS, agency, or service business with data-driven Meta and Google Ads strategies. 17x+ ROAS guaranteed or we optimize for free. Schedule your free growth audit.", keywords: "paid advertising, Meta Ads, Google Ads, SaaS growth, digital marketing agency, customer acquisition, B2B growth, performance marketing", metadataBase: new URL("https://fgagrowth.com"), - alternates: { - canonical: "https://fgagrowth.com"}, - openGraph: { - title: "FGA Growth | Expert Paid Advertising for SaaS & Agencies", description: "See how we deliver predictable revenue growth through precision paid ads strategies. Real results. Real numbers.", url: "https://fgagrowth.com", siteName: "FGA Growth", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaFIgcyoyASNedMIiANZ6vWpg2/a-modern-digital-marketing-dashboard-wit-1772822790669-3948499a.png", alt: "FGA Growth Performance Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "FGA Growth | Predictable Revenue Growth", description: "Expert paid advertising for SaaS companies, marketing agencies, and service businesses.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AaFIgcyoyASNedMIiANZ6vWpg2/a-modern-digital-marketing-dashboard-wit-1772822790669-3948499a.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "FGA Growth | Predictable Growth Through Expert Paid Ads", description: "Scale SaaS, agencies, and service businesses through precision Meta and Google Ads strategies. See results or we optimize for free."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}