Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7073bcc259 | |||
| 58e63f4bae | |||
| f8a0b16c93 | |||
| ca022cf1ec | |||
| 1ee58b555a | |||
| 7190c51466 | |||
| 5579d48543 | |||
| 77ec9c70d5 | |||
| dd3ca8cef5 | |||
| 08270d50bd | |||
| e4ad9515c1 | |||
| 854a161fa6 | |||
| fab9a6e7a5 |
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: "Início", id: "/" },
|
||||||
{ name: "Criadores", id: "/creators" },
|
{ name: "Criadores", id: "/creators" },
|
||||||
{ name: "Login", id: "/login" },
|
{ name: "Login", id: "/login" },
|
||||||
|
{ name: "Comece Agora", id: "/cadastrar" }
|
||||||
]}
|
]}
|
||||||
brandName="Peekly"
|
brandName="Peekly"
|
||||||
button={{ text: "Cadastrar", href: "/creators" }}
|
button={{ text: "Cadastrar", href: "/cadastrar" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -39,7 +40,7 @@ export default function CreatorsPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Torne-se uma Criadora"
|
title="Torne-se uma Criadora"
|
||||||
description="Monetize seu conteúdo exclusivo com a melhor plataforma premium."
|
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"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cd4Fi4A0j0DojPG2mh24P9kNoO/uploaded-1776782413133-23exehdp.png"
|
||||||
imageAlt="Criadora contente criando conteúdo"
|
imageAlt="Criadora contente criando conteúdo"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -28,6 +28,7 @@ export default function LoginPage() {
|
|||||||
{ name: "Início", id: "/" },
|
{ name: "Início", id: "/" },
|
||||||
{ name: "Criadores", id: "/creators" },
|
{ name: "Criadores", id: "/creators" },
|
||||||
{ name: "Login", id: "/login" },
|
{ name: "Login", id: "/login" },
|
||||||
|
{ name: "Comece Agora", id: "/cadastrar" }
|
||||||
]}
|
]}
|
||||||
brandName="Peekly"
|
brandName="Peekly"
|
||||||
button={{ text: "Entrar", href: "/login" }}
|
button={{ text: "Entrar", href: "/login" }}
|
||||||
|
|||||||
@@ -32,9 +32,10 @@ export default function LandingPage() {
|
|||||||
{ name: "Início", id: "/" },
|
{ name: "Início", id: "/" },
|
||||||
{ name: "Criadores", id: "/creators" },
|
{ name: "Criadores", id: "/creators" },
|
||||||
{ name: "Login", id: "/login" },
|
{ name: "Login", id: "/login" },
|
||||||
|
{ name: "Comece Agora", id: "/cadastrar" }
|
||||||
]}
|
]}
|
||||||
brandName="Peekly"
|
brandName="Peekly"
|
||||||
button={{ text: "Comece Agora", href: "/login" }}
|
button={{ text: "Comece Agora", href: "/cadastrar" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</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-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" }
|
{ 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={[
|
marqueeItems={[
|
||||||
{ type: "text", text: "Conteúdo 100% Exclusivo" },
|
{ type: "text", text: "Conteúdo 100% Exclusivo" },
|
||||||
{ type: "text", text: "Segurança e Privacidade" },
|
{ type: "text", text: "Segurança e Privacidade" },
|
||||||
|
|||||||
Reference in New Issue
Block a user