3 Commits

Author SHA1 Message Date
d8244361c2 Update src/app/page.tsx 2026-06-03 15:04:19 +00:00
a202e49908 Update src/app/layout.tsx 2026-06-03 15:04:19 +00:00
12c4f97329 Merge version_1 into main
Merge version_1 into main
2026-06-03 11:26:23 +00:00
2 changed files with 15 additions and 15 deletions

View File

@@ -11,7 +11,7 @@ import { Archivo } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
title: 'URBAN PULSE',
description: "Generated by create next app",
};

View File

@@ -1,15 +1,15 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import MediaAbout from '@/components/sections/about/MediaAbout';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
import MediaAbout from "@/components/sections/about/MediaAbout";
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
import ProductCardThree from "@/components/sections/product/ProductCardThree";
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
export default function Page() {
return (
@@ -27,7 +27,7 @@ export default function Page() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="VNDL Studio"
brandName="URBAN PULSE"
logoSrc="http://img.b2bpic.net/free-photo/real-life-zodiac-collage_23-2149588408.jpg"
logoAlt="VNDL Studio Logo"
navItems={[
@@ -40,7 +40,7 @@ export default function Page() {
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="VNDL Studio"
logoText="URBAN PULSE"
description="REDEFINE THE STREETS"
buttons={[{ "text": "Shop Last Drop", "href": "#products" }]}
background={{ "variant": "sparkles-gradient" }}
@@ -157,7 +157,7 @@ export default function Page() {
<ContactSplitForm
title="Join the Club"
description="Sign up for exclusive drops, insider access, and VIP events. Never miss a beat from VNDL Studio."
inputs={[{ "name": "email", "type": "email", "placeholder": "Enter your email", "required": true }]}
inputs={[{ "name": "email", "type": "email", "placeholder": "Enter your email", "required": true }]}
useInvertedBackground={false}
buttonText="Join Now"
mediaPosition="right"
@@ -165,7 +165,7 @@ export default function Page() {
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="VNDL Studio"
logoText="URBAN PULSE"
columns={[
{ "title": "Shop", "items": [{ "label": "New Arrivals", "href": "#products" }, { "label": "T-Shirts", "href": "#" }, { "label": "Hoodies", "href": "#" }, { "label": "Accessories", "href": "#" }] },
{ "title": "Collections", "items": [{ "label": "LA Originals", "href": "#" }, { "label": "Neon City", "href": "#" }, { "label": "Limited Drops", "href": "#" }] },
@@ -177,4 +177,4 @@ export default function Page() {
</div>
</ThemeProvider>
);
}
}