Merge version_1 into main #1
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -46,7 +46,7 @@ export default function ShopPage() {
|
||||
{ value: "6", title: "Products Available" },
|
||||
{ value: "Limited", title: "Stock Per Item" }
|
||||
]}
|
||||
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=2"
|
||||
imageAlt="Submundo merchandise collection"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user