From ae02074a75772d804484b86d233f432ffc53f45b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:52:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 ++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 48 insertions(+), 6 deletions(-) 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} + + + +