Add src/app/creator/page.tsx
This commit is contained in:
31
src/app/creator/page.tsx
Normal file
31
src/app/creator/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user