5 Commits

Author SHA1 Message Date
b09e135e7d Add src/app/pricing/page.tsx 2026-04-09 18:48:27 +00:00
4104e507da Update src/app/page.tsx 2026-04-09 18:48:27 +00:00
1bc246e17b Merge version_1 into main
Merge version_1 into main
2026-04-09 18:27:21 +00:00
2d8e56f891 Merge version_1 into main
Merge version_1 into main
2026-04-09 18:26:52 +00:00
c7e0262840 Merge version_1 into main
Merge version_1 into main
2026-04-09 18:26:17 +00:00
2 changed files with 75 additions and 19 deletions

View File

@@ -32,7 +32,7 @@ export default function LandingPage() {
navItems={[
{ name: "Benefícios", id: "#features" },
{ name: "Como funciona", id: "#how-it-works" },
{ name: "Planos", id: "#pricing" },
{ name: "Planos", id: "/pricing" },
{ name: "Contato", id: "#contact" },
]}
brandName="Elyra"
@@ -104,24 +104,6 @@ export default function LandingPage() {
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
animationType="scale-rotate"
textboxLayout="default"
useInvertedBackground={true}
plans={[
{
id: "rental", badge: "Popular", price: "R$79/mês", subtitle: "Aluguel de Site", features: ["Site profissional", "Layout responsivo", "Botão de WhatsApp", "Hospedagem incluída"],
},
{
id: "purchase", badge: "Property", price: "R$997", subtitle: "Compra de Site", features: ["Site completo", "Propriedade total", "SEO básico incluso", "Pagamento único"],
},
]}
title="Escolha o melhor plano para você"
description="Aluguel acessível ou compra definitiva: temos a solução ideal para seu momento."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
textboxLayout="default"

74
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,74 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Benefícios", id: "/#features" },
{ name: "Como funciona", id: "/#how-it-works" },
{ name: "Planos", id: "/pricing" },
{ name: "Contato", id: "/#contact" },
]}
brandName="Elyra"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
animationType="scale-rotate"
textboxLayout="default"
useInvertedBackground={true}
plans={[
{
id: "rental", badge: "Popular", price: "R$79/mês", subtitle: "Aluguel de Site", features: ["Site profissional", "Layout responsivo", "Botão de WhatsApp", "Hospedagem incluída"],
},
{
id: "purchase", badge: "Property", price: "R$997", subtitle: "Compra de Site", features: ["Site completo", "Propriedade total", "SEO básico incluso", "Pagamento único"],
},
]}
title="Escolha o melhor plano para você"
description="Aluguel acessível ou compra definitiva: temos a solução ideal para seu momento."
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Empresa", items: [{ label: "Sobre", href: "#" }, { label: "Contato", href: "#" }],
},
{
title: "Serviços", items: [{ label: "Criação de sites", href: "#" }, { label: "Sites para empresas", href: "#" }],
},
{
title: "Legal", items: [{ label: "Termos de uso", href: "#" }, { label: "Política de privacidade", href: "#" }],
},
]}
logoText="Elyra"
copyrightText="© 2026 Elyra. Todos os direitos reservados."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}