Merge version_4 into main #15
61
src/app/cadastrar/page.tsx
Normal file
61
src/app/cadastrar/page.tsx
Normal file
@@ -0,0 +1,61 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function CadastrarPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="large"
|
||||
background="circleGradient"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Início", id: "/" },
|
||||
{ name: "Criadores", id: "/creators" },
|
||||
{ name: "Login", id: "/login" },
|
||||
{ name: "Comece Agora", id: "/cadastrar" }
|
||||
]}
|
||||
brandName="Peekly"
|
||||
button={{ text: "Entrar", href: "/login" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cadastrar-page" data-section="cadastrar-page">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Registro"
|
||||
title="Comece Agora"
|
||||
description="Crie sua conta e aproveite o melhor conteúdo premium."
|
||||
buttons={[{ text: "Criar Conta" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Peekly", items: [{ label: "Sobre Nós", href: "#" }, { label: "Privacidade", href: "#" }] },
|
||||
{ title: "Conta", items: [{ label: "Login", href: "/login" }, { label: "Criadores", href: "/creators" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 Peekly Inc."
|
||||
bottomRightText="18+ Conteúdo Exclusivo"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -28,9 +28,10 @@ export default function CreatorsPage() {
|
||||
{ name: "Início", id: "/" },
|
||||
{ name: "Criadores", id: "/creators" },
|
||||
{ name: "Login", id: "/login" },
|
||||
{ name: "Comece Agora", id: "/cadastrar" }
|
||||
]}
|
||||
brandName="Peekly"
|
||||
button={{ text: "Cadastrar", href: "/creators" }}
|
||||
button={{ text: "Cadastrar", href: "/cadastrar" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -39,7 +40,7 @@ export default function CreatorsPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Torne-se uma Criadora"
|
||||
description="Monetize seu conteúdo exclusivo com a melhor plataforma premium."
|
||||
buttons={[{ text: "Cadastrar" }]}
|
||||
buttons={[{ text: "Cadastrar", href: "/cadastrar" }]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cd4Fi4A0j0DojPG2mh24P9kNoO/uploaded-1776782413133-23exehdp.png"
|
||||
imageAlt="Criadora contente criando conteúdo"
|
||||
/>
|
||||
|
||||
@@ -28,6 +28,7 @@ export default function LoginPage() {
|
||||
{ name: "Início", id: "/" },
|
||||
{ name: "Criadores", id: "/creators" },
|
||||
{ name: "Login", id: "/login" },
|
||||
{ name: "Comece Agora", id: "/cadastrar" }
|
||||
]}
|
||||
brandName="Peekly"
|
||||
button={{ text: "Entrar", href: "/login" }}
|
||||
|
||||
@@ -32,9 +32,10 @@ export default function LandingPage() {
|
||||
{ name: "Início", id: "/" },
|
||||
{ name: "Criadores", id: "/creators" },
|
||||
{ name: "Login", id: "/login" },
|
||||
{ name: "Comece Agora", id: "/cadastrar" }
|
||||
]}
|
||||
brandName="Peekly"
|
||||
button={{ text: "Comece Agora", href: "/login" }}
|
||||
button={{ text: "Comece Agora", href: "/cadastrar" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -50,7 +51,7 @@ export default function LandingPage() {
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cd4Fi4A0j0DojPG2mh24P9kNoO/uploaded-1776704234042-ls0dpuqt.jpg", alt: "Model 4" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cd4Fi4A0j0DojPG2mh24P9kNoO/uploaded-1776704239125-o2dafxhn.jpg", alt: "Model 5" }
|
||||
]}
|
||||
buttons={[{ text: "Comece Agora", href: "/login" }]}
|
||||
buttons={[{ text: "Comece Agora", href: "/cadastrar" }]}
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "Conteúdo 100% Exclusivo" },
|
||||
{ type: "text", text: "Segurança e Privacidade" },
|
||||
@@ -143,4 +144,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user