diff --git a/src/app/cadastrar/page.tsx b/src/app/cadastrar/page.tsx new file mode 100644 index 0000000..a31919b --- /dev/null +++ b/src/app/cadastrar/page.tsx @@ -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 ( + + + + +
+ +
+ + +
+
+ ); +} diff --git a/src/app/creators/page.tsx b/src/app/creators/page.tsx index 904f261..b076a98 100644 --- a/src/app/creators/page.tsx +++ b/src/app/creators/page.tsx @@ -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" }} /> @@ -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" /> diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 58fc932..445ac8f 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -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" }} diff --git a/src/app/page.tsx b/src/app/page.tsx index 4e78599..e34704a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" }} /> @@ -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() { ); -} \ No newline at end of file +}