diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3636c57..0874c67 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,41 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } 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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - export const metadata: Metadata = { - title: "AI UGC Ads - Scale Your Advertising with AI Creators", description: "Create high-performing AI-generated UGC ads instantly. Scale your advertising with realistic AI creators producing authentic user-generated content for TikTok, Instagram, and Meta.", keywords: "AI UGC ads, UGC advertising, AI generated content, social media ads, TikTok ads, Instagram ads, user-generated content, performance marketing", metadataBase: new URL("https://aiugcads.com"), - alternates: { - canonical: "https://aiugcads.com"}, - openGraph: { - title: "AI UGC Ads - Scale Your Advertising with AI Creators", description: "Create high-performing AI-generated UGC ads instantly. Scale your advertising with realistic AI creators.", url: "https://aiugcads.com", siteName: "AI UGC Ads", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYxNz4Ejn7MjZoq3UCNYDHC1kP/abstract-futuristic-background-with-dark-1772974079108-4402dc8b.png", alt: "AI UGC Ads Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "AI UGC Ads - Scale Your Advertising with AI Creators", description: "Create high-performing AI-generated UGC ads instantly.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYxNz4Ejn7MjZoq3UCNYDHC1kP/abstract-futuristic-background-with-dark-1772974079108-4402dc8b.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "AI UGC Ads - High-Converting UGC Content Generated by AI", description: "Scale your advertising with realistic AI creators producing high-performing UGC content. 500+ ads created, 2.5x better CTR, 80% cost savings."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +