From 10499dca7bdf8dcf1f8983ff9fda7b9429320fa1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 14:16:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 48 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a4528cd..4bf8465 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}