Update src/app/creator/page.tsx

This commit is contained in:
2026-05-06 20:35:40 +00:00
parent 689000ea43
commit cd5db0bff0

View File

@@ -8,23 +8,30 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function CreatorPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Attività Locale", id: "/attivita-locale" },
{ name: "Creator", id: "hero" },
]}
brandName="Social Privé"
/>
<HeroOverlayTestimonial
title="Elevate Your Influence."
description="Access exclusive local opportunities and connect with premium brands ready to collaborate with your authentic vision."
buttons={[{ text: "Join Community", href: "#" }]}
imageSrc="http://img.b2bpic.net/free-photo/gold-smartphones-with-gift-decorations_187299-46989.jpg?_wi=2"
/>
<FooterBaseCard logoText="Social Privé" columns={[]} />
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Attività Locale", id: "/attivita-locale" },
{ name: "Creator", id: "hero" },
]}
brandName="Social Privé"
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlayTestimonial
title="Elevate Your Influence."
description="Access exclusive local opportunities and connect with premium brands ready to collaborate with your authentic vision."
buttons={[{ text: "Join Community", href: "#" }]}
imageSrc="http://img.b2bpic.net/free-photo/gold-smartphones-with-gift-decorations_187299-46989.jpg?_wi=2"
testimonials={[{ id: "1", name: "Jordan P.", handle: "@jordan_creates", testimonial: "Finally, a platform that understands my value as a creator.", rating: 5 }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard logoText="Social Privé" columns={[]} />
</div>
</ReactLenis>
</ThemeProvider>
);