From 6fad4929f7b577010dd9cefab08cae50e3c06ed0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 22:41:18 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index e7da30c..dadbd35 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -91,7 +91,7 @@ export default function AboutPage() { { value: "2018", title: "Movement Founded" }, { value: "Campinas", title: "Original Birthplace" }, ]} - imageSrc="http://img.b2bpic.net/free-vector/realistic-holi-vertical-flyer-template_52683-81618.jpg" + imageSrc="http://img.b2bpic.net/free-vector/realistic-holi-vertical-flyer-template_52683-81618.jpg?_wi=3" imageAlt="Submundo808 movement story" useInvertedBackground={false} mediaAnimation="slide-up" -- 2.49.1 From 58fa794e1d446c1426062f773a3834155a4bff5b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 22:41:18 +0000 Subject: [PATCH 2/4] Update src/app/events/page.tsx --- src/app/events/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/events/page.tsx b/src/app/events/page.tsx index 4938523..e0c1fd2 100644 --- a/src/app/events/page.tsx +++ b/src/app/events/page.tsx @@ -160,7 +160,7 @@ export default function EventsPage() { title: "Artists Lineup", }, ]} - imageSrc="http://img.b2bpic.net/free-vector/realistic-holi-vertical-flyer-template_52683-81618.jpg" + imageSrc="http://img.b2bpic.net/free-vector/realistic-holi-vertical-flyer-template_52683-81618.jpg?_wi=1" imageAlt="Festival poster" useInvertedBackground={false} mediaAnimation="slide-up" -- 2.49.1 From 6a7513f2e51fb17fde4d86f812d980120272a037 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 22:41:19 +0000 Subject: [PATCH 3/4] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 590a34c..9f1d50c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_Sans } 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 { Public_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Submundo808 - Funk Events, DJ Lineups & Merch", + description: "Experience underground funk music at Submundo808. Buy event tickets, explore artist lineups, and shop exclusive merch from the authentic funk movement.", + keywords: "funk music, Campinas events, São Paulo nightlife, DJ performances, music events, electronic music", + metadataBase: new URL("https://submundo808.com"), + alternates: { + canonical: "https://submundo808.com", + }, + openGraph: { + title: "Submundo808 - Underground Funk Movement", + description: "Join the authentic funk movement. Live DJ sets, exclusive events, and limited-edition merchandise.", + url: "https://submundo808.com", + siteName: "Submundo808", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/cinematic-portrait-people-celebrating-usa-independence-day-national-holiday_23-2151479155.jpg", + alt: "Submundo808 event experience", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Submundo808 - Funk Events & Merch", + description: "Experience underground funk culture at Submundo808", + images: [ + "http://img.b2bpic.net/free-photo/cinematic-portrait-people-celebrating-usa-independence-day-national-holiday_23-2151479155.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}