Update src/app/layout.tsx

This commit is contained in:
2026-03-04 14:15:56 +00:00
parent fa80001dbf
commit 3eeed195cd

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Jesus Malverde Movement | Conceptual Streetwear Brand",
description: "A cultural movement questioning reality, identity, and social narratives. Premium conceptual streetwear exploring perception, awareness, and independent thought.",
keywords: "conceptual streetwear, independent brand, luxury fashion, cultural movement, philosophical fashion, artistic brand, alternative streetwear",
metadataBase: new URL("https://jesusmalverdemovement.com"),
alternates: {
canonical: "https://jesusmalverdemovement.com",
},
openGraph: {
title: "Jesus Malverde Movement - Perception is a Choice",
description: "Questioning surface reality. Exploring identity beyond stereotypes. A cultural movement through fashion.",
url: "https://jesusmalverdemovement.com",
siteName: "Jesus Malverde Movement",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/interested-african-man-chilling-stairs-inspired-guy-black-attire-sitting-steps-thinking-about-something_197531-22075.jpg",
alt: "Jesus Malverde Movement - Cinematic Streetwear",
},
],
},
twitter: {
card: "summary_large_image",
title: "Jesus Malverde Movement - Perception is a Choice",
description: "A cultural movement questioning reality through conceptual streetwear.",
images: ["http://img.b2bpic.net/free-photo/interested-african-man-chilling-stairs-inspired-guy-black-attire-sitting-steps-thinking-about-something_197531-22075.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Jesus Malverde Movement", description: "A cultural movement questioning surface reality, identity beyond stereotypes, and the narratives we're taught to believe."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}