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" 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" 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}