Add src/app/creator/page.tsx

This commit is contained in:
2026-05-06 20:35:13 +00:00
parent ec94001e27
commit 50dd0f0881

31
src/app/creator/page.tsx Normal file
View File

@@ -0,0 +1,31 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function CreatorPage() {
return (
<ThemeProvider>
<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={[]} />
</ReactLenis>
</ThemeProvider>
);
}