Update src/app/layout.tsx

This commit is contained in:
2026-03-03 14:54:46 +00:00
parent 5150d7bae5
commit b275c79a26

View File

@@ -1,46 +1,17 @@
import type { Metadata } from "next";
import { Halant } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
import "./styles/globals.css";
export const metadata: Metadata = {
title: "Done-For-You Meta Ads Management | Instant Lead Delivery", description: "Scale your business with done-for-you Meta ads management. Dedicated support, unlimited revisions, and real-time lead delivery to your CRM. Book your free strategy call today.", keywords: "Meta ads management, Facebook ads agency, lead generation service, done-for-you ads, ecommerce marketing, digital advertising, paid ads management", robots: {
index: true,
follow: true
},
openGraph: {
title: "Done-For-You Meta Ads That Deliver Instant Leads", description: "Get a dedicated designer, ads manager, and unlimited revisions. Every lead flows straight to your CRM in real time.", siteName: "MetaAds Pro", type: "website"
},
twitter: {
card: "summary_large_image", title: "Done-For-You Meta Ads Management", description: "Scale with dedicated support and real-time lead delivery. Book your free strategy call."
}
};
title: "MetaAds Pro - Done-For-You Meta Ads Management", description: "Get a dedicated designer, ads manager, and unlimited revisions. Done-for-you Meta ads that deliver instant leads to your CRM."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1408,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}