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}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 653b1c8..1cfdbc1 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -111,10 +111,10 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}