Update src/app/layout.tsx

This commit is contained in:
2026-03-17 11:29:09 +00:00
parent 3ee446244c
commit 23973672b6

View File

@@ -1,29 +1,49 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Libre_Baskerville, Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
const interFont = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Catfish Cartel | Professional Catfishing for Your Business",
description: "Welcome to the cartel. We make the magic, you take the credit. Expert branding agency transforming businesses into irresistible brands since 2026.",
keywords: "branding agency, brand design, professional catfishing, brand transformation, luxury branding, exclusive membership",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Catfish Cartel | Your Brand, But Hotter",
description: "Professional Catfishing for Your Business. We make the magic, you take the credit.",
type: "website",
siteName: "Catfish Cartel",
images: [
{
url: "http://img.b2bpic.net/free-vector/leaves-with-neon-frame-realistic_23-2148437702.jpg",
alt: "Catfish Cartel - Dark jungle luxury branding agency",
},
],
},
twitter: {
card: "summary_large_image",
title: "Catfish Cartel | Your Brand, But Hotter",
description: "Professional branding for businesses ready to dominate.",
images: ["http://img.b2bpic.net/free-vector/leaves-with-neon-frame-realistic_23-2148437702.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -32,7 +52,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body
className={`${libreBaskerville.variable} ${interFont.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -44,4 +66,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}