Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f20b08c2a0 | |||
| 526ef5c209 | |||
| a1e0d8e0df | |||
| 2d60e0abc0 |
@@ -11,7 +11,8 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
|
|||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
import { BookOpen, Settings, Share2, Sparkles, CheckCircle } from "lucide-react";
|
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||||
|
import { BookOpen, Settings, Share2, Zap } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -34,6 +35,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Home", id: "hero" },
|
{ name: "Home", id: "hero" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "features" },
|
||||||
{ name: "Configurações", id: "settings" },
|
{ name: "Configurações", id: "settings" },
|
||||||
|
{ name: "Preços", id: "pricing" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
@@ -93,6 +95,27 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="pricing" data-section="pricing">
|
||||||
|
<PricingCardFive
|
||||||
|
animationType="slide-up"
|
||||||
|
title="Planos para sua jornada"
|
||||||
|
description="Escolha o melhor plano para crescer em sua fé diária."
|
||||||
|
textboxLayout="split"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
plans={[
|
||||||
|
{
|
||||||
|
id: "free", tag: "Gratuito", price: "R$0", period: "/mês", description: "Acesso básico aos versículos diários.", button: { text: "Escolher Plano Gratuito" },
|
||||||
|
featuresTitle: "O que está incluído:", features: ["1 Versículo por dia", "Temas básicos", "Notificações diárias"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "premium", tag: "Premium", tagIcon: Zap,
|
||||||
|
price: "R$8", period: "/mês", description: "Experiência completa com recursos avançados.", button: { text: "Assinar Premium" },
|
||||||
|
featuresTitle: "Recursos Premium:", features: ["Personalização completa de cores", "Opções de narração por voz", "Versículos ilimitados", "Sem anúncios"]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<MediaAbout
|
<MediaAbout
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
|||||||
Reference in New Issue
Block a user