Update src/app/layout.tsx

This commit is contained in:
2026-03-05 05:01:12 +00:00
parent d77c1249bb
commit f09f245b63

View File

@@ -1,12 +1,8 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Efficient Ads - Agency-Quality Ad Creatives in 48 Hours", description: "Get agency-quality ad creatives delivered in 48 hours at half the cost. Perfect for agencies, brands, and creators."
};
title: "Efficient Ads - Agency-Quality Ad Creatives in 48 Hours", description: "Get professional ad creatives delivered in 48 hours at half the traditional cost. 40% faster, 50% cheaper. Perfect for agencies, brands, and creators."};
export default function RootLayout({
children,
@@ -15,7 +11,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1385,4 +1383,4 @@ export default function RootLayout({
</body>
</html>
);
}
}