diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 35bb613..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1444 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import { 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "LeadBricks Studio - Premium Marketing & UGC Production", - description: "Performance-driven marketing agency & UGC production company. Lead generation, social media management, and high-volume content production for real estate, hospitality, and EdTech.", - keywords: "marketing agency, UGC production, lead generation, social media management, real estate marketing, content creation, India", - metadataBase: new URL("https://leadbricks.online"), - alternates: { - canonical: "https://leadbricks.online", - }, - openGraph: { - title: "LeadBricks Studio - Marketing & UGC Production", - description: "Premium, performance-driven marketing and UGC production company serving brands across real estate, hospitality, and EdTech.", - url: "https://leadbricks.online", - siteName: "LeadBricks Studio", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUZgTEL046kfCgA48Icets3dxA/a-modern-high-tech-digital-marketing-das-1772649329991-56a4d0a2.png", - alt: "LeadBricks Studio - Premium Marketing & UGC", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "LeadBricks Studio - Marketing & UGC Production", - description: "Performance-driven marketing and high-volume UGC production for growing brands.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUZgTEL046kfCgA48Icets3dxA/a-modern-high-tech-digital-marketing-das-1772649329991-56a4d0a2.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -