diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6c0a455..c4101ec 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,21 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Lora, Inter } from "next/font/google"; import "./globals.css"; +import ServiceWrapper from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; -const inter = Inter({ subsets: ["latin"] }); +const lora = Lora({ + variable: "--font-lora", subsets: ["latin"], + weight: ["400", "500", "600", "700"], +}); + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], + weight: ["400", "500", "600", "700"], +}); export const metadata: Metadata = { - title: "studio ads - Professional Ad Creatives in 48 Hours", description: "Get agency-quality ads in 48 hours with proven 40% ROAS lift. Professional ad creatives delivered fast, 50% cheaper than traditional agencies." -}; + title: "studio ads - Agency-Quality Ad Creatives in 48 Hours", description: "Get professional video ads and static creatives delivered in 48 hours. 40% average ROAS increase. Half the cost of traditional agencies."}; export default function RootLayout({ children, @@ -14,8 +23,41 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - {children} + + + + + {children} + + + +