Merge version_1 into main #1
@@ -58,7 +58,7 @@ export default function AboutPage() {
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-dancing-laying-sofa_23-2147644252.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-dancing-laying-sofa_23-2147644252.jpg?_wi=2"
|
||||
imageAlt="Nightlife event atmosphere"
|
||||
showDimOverlay={true}
|
||||
showBlur={true}
|
||||
|
||||
@@ -59,7 +59,7 @@ export default function EventsPage() {
|
||||
href: "#events-listings",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-dancing-laying-sofa_23-2147644252.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-dancing-laying-sofa_23-2147644252.jpg?_wi=3"
|
||||
imageAlt="Upcoming events"
|
||||
showDimOverlay={true}
|
||||
showBlur={true}
|
||||
@@ -81,7 +81,7 @@ export default function EventsPage() {
|
||||
name: "Electric Sunset",
|
||||
price: "$45",
|
||||
variant: "Saturday, Dec 15",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rear-view-carefree-fans-having-fun-music-festival-front-illuminated-stage-night_637285-615.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rear-view-carefree-fans-having-fun-music-festival-front-illuminated-stage-night_637285-615.jpg?_wi=1",
|
||||
imageAlt: "Electric Sunset event",
|
||||
},
|
||||
{
|
||||
@@ -89,7 +89,7 @@ export default function EventsPage() {
|
||||
name: "Midnight Groove",
|
||||
price: "$55",
|
||||
variant: "Friday, Dec 21",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dj-mixing-equipment-underground-club_482257-78401.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dj-mixing-equipment-underground-club_482257-78401.jpg?_wi=1",
|
||||
imageAlt: "Midnight Groove event",
|
||||
},
|
||||
{
|
||||
@@ -97,7 +97,7 @@ export default function EventsPage() {
|
||||
name: "Urban Pulse",
|
||||
price: "$60",
|
||||
variant: "Saturday, Dec 22",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/colorful-poster-night-party_1057-1664.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/colorful-poster-night-party_1057-1664.jpg?_wi=1",
|
||||
imageAlt: "Urban Pulse event",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -53,7 +53,7 @@ export default function GalleryPage() {
|
||||
tag="Visual Memories"
|
||||
tagIcon={Camera}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-dancing-laying-sofa_23-2147644252.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-dancing-laying-sofa_23-2147644252.jpg?_wi=4"
|
||||
imageAlt="Gallery preview"
|
||||
showDimOverlay={true}
|
||||
containerClassName="max-w-6xl mx-auto px-4 py-32"
|
||||
@@ -74,7 +74,7 @@ export default function GalleryPage() {
|
||||
name: "Crowd Energy",
|
||||
price: "Oct 2024",
|
||||
variant: "Main Stage",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rear-view-carefree-fans-having-fun-music-festival-front-illuminated-stage-night_637285-615.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rear-view-carefree-fans-having-fun-music-festival-front-illuminated-stage-night_637285-615.jpg?_wi=2",
|
||||
imageAlt: "Crowd dancing at main stage",
|
||||
},
|
||||
{
|
||||
@@ -82,7 +82,7 @@ export default function GalleryPage() {
|
||||
name: "Stage Lighting",
|
||||
price: "Oct 2024",
|
||||
variant: "Techno Tent",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dj-mixing-equipment-underground-club_482257-78401.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dj-mixing-equipment-underground-club_482257-78401.jpg?_wi=2",
|
||||
imageAlt: "Stage lighting effects",
|
||||
},
|
||||
{
|
||||
@@ -90,7 +90,7 @@ export default function GalleryPage() {
|
||||
name: "Rooftop Vibes",
|
||||
price: "Sep 2024",
|
||||
variant: "VIP Terrace",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/colorful-poster-night-party_1057-1664.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/colorful-poster-night-party_1057-1664.jpg?_wi=2",
|
||||
imageAlt: "Rooftop party atmosphere",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito_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 { Nunito_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 nunitoSans = Nunito_Sans({
|
||||
variable: "--font-nunito-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Culture Connects - Premium Nightlife Events & Community",
|
||||
description: "Discover exceptional nightlife events featuring world-class DJs, great people, and unforgettable vibes. Join the Culture Connects community today.",
|
||||
keywords: "nightlife events, DJ events, live music, dance parties, nightclub events, electronic music, community events",
|
||||
metadataBase: new URL("https://cultureconnects.com"),
|
||||
alternates: {
|
||||
canonical: "https://cultureconnects.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Culture Connects - Where Culture Connects",
|
||||
description: "Experience premium nightlife events with great music, great people, and good vibes.",
|
||||
url: "https://cultureconnects.com",
|
||||
siteName: "Culture Connects",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/woman-dancing-laying-sofa_23-2147644252.jpg",
|
||||
alt: "Culture Connects nightlife events",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Culture Connects - Premium Nightlife Events",
|
||||
description: "Join our community for unforgettable nightlife experiences.",
|
||||
images: ["http://img.b2bpic.net/free-photo/woman-dancing-laying-sofa_23-2147644252.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunitoSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -71,7 +71,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-dancing-laying-sofa_23-2147644252.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-dancing-laying-sofa_23-2147644252.jpg?_wi=1"
|
||||
imageAlt="Nightlife event with vibrant lighting and dancing crowd"
|
||||
showDimOverlay={true}
|
||||
showBlur={true}
|
||||
|
||||
Reference in New Issue
Block a user