Update src/app/caracteristicas/page.tsx
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
||||
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
@@ -26,30 +26,18 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "/",
|
||||
},
|
||||
name: "Inicio", id: "/"},
|
||||
{
|
||||
name: "Características",
|
||||
id: "/caracteristicas",
|
||||
},
|
||||
name: "Características", id: "/caracteristicas"},
|
||||
{
|
||||
name: "Precios",
|
||||
id: "/precios",
|
||||
},
|
||||
name: "Precios", id: "/precios"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/#faq",
|
||||
},
|
||||
name: "FAQ", id: "/#faq"},
|
||||
]}
|
||||
button={{
|
||||
text: "Iniciar Sesión",
|
||||
href: "/auth/login",
|
||||
}}
|
||||
text: "Iniciar Sesión", href: "/auth/login"}}
|
||||
topBarButton={{
|
||||
text: "Registrarse",
|
||||
href: "/auth/register",
|
||||
}}
|
||||
text: "Registrarse", href: "/auth/register"}}
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6h5de9"
|
||||
logoAlt="[NOMBRE DE TU MARCA] Logo"
|
||||
brandName="[NOMBRE DE TU MARCA]"
|
||||
@@ -57,42 +45,22 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentyOne
|
||||
<FeatureCardTwentyThree
|
||||
useInvertedBackground={false}
|
||||
title="Explora la potencia de nuestra plataforma."
|
||||
description="Desde la automatización de impuestos hasta la gestión de empleados, cada módulo está diseñado para tu éxito fiscal."
|
||||
features={[
|
||||
{
|
||||
id: "declaraciones-simplificadas",
|
||||
title: "Declaraciones Juradas Simplificadas",
|
||||
description: "Genera tus DDJJ de Monotributo, IVA y Ganancias de forma rápida y sin errores.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tax-credits-claim-return-deduction-refund-concept_53876-133848.jpg?_wi=1",
|
||||
imageAlt: "Tax Credits Claim Return Deduction Refund Concept",
|
||||
},
|
||||
id: "declaraciones-simplificadas", title: "Declaraciones Juradas Simplificadas", description: "Genera tus DDJJ de Monotributo, IVA y Ganancias de forma rápida y sin errores.", imageSrc: "http://img.b2bpic.net/free-photo/tax-credits-claim-return-deduction-refund-concept_53876-133848.jpg", imageAlt: "Tax Credits Claim Return Deduction Refund Concept"},
|
||||
{
|
||||
id: "flujo-caja",
|
||||
title: "Seguimiento de Flujo de Caja",
|
||||
description: "Visualiza tus ingresos y egresos para una mejor toma de decisiones financieras.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-money-infographic_23-2147602901.jpg",
|
||||
imageAlt: "Hand-drawn money infographic",
|
||||
},
|
||||
id: "flujo-caja", title: "Seguimiento de Flujo de Caja", description: "Visualiza tus ingresos y egresos para una mejor toma de decisiones financieras.", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-money-infographic_23-2147602901.jpg", imageAlt: "Hand-drawn money infographic"},
|
||||
{
|
||||
id: "integracion-bancaria",
|
||||
title: "Integración Bancaria Segura",
|
||||
description: "Conecta tus cuentas bancarias para conciliar movimientos automáticamente.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-using-tablet-with-bank-app_1098-21610.jpg",
|
||||
imageAlt: "People using tablet with bank app",
|
||||
},
|
||||
id: "integracion-bancaria", title: "Integración Bancaria Segura", description: "Conecta tus cuentas bancarias para conciliar movimientos automáticamente.", imageSrc: "http://img.b2bpic.net/free-photo/people-using-tablet-with-bank-app_1098-21610.jpg", imageAlt: "People using tablet with bank app"},
|
||||
{
|
||||
id: "reportes-personalizables",
|
||||
title: "Reportes Financieros Personalizables",
|
||||
description: "Crea informes detallados adaptados a tus necesidades para analizar tu situación.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spreadsheet-marketing-budget-report-file-concept_53876-124781.jpg",
|
||||
imageAlt: "Spreadsheet Marketing Budget Report File Concept",
|
||||
},
|
||||
id: "reportes-personalizables", title: "Reportes Financieros Personalizables", description: "Crea informes detallados adaptados a tus necesidades para analizar tu situación.", imageSrc: "http://img.b2bpic.net/free-photo/spreadsheet-marketing-budget-report-file-concept_53876-124781.jpg", imageAlt: "Spreadsheet Marketing Budget Report File Concept"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/tax-credits-claim-return-deduction-refund-concept_53876-133848.jpg?_wi=2"
|
||||
imageAlt="Tax Credits Claim Return Deduction Refund Concept"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -105,147 +73,79 @@ export default function LandingPage() {
|
||||
description="Historias de éxito que impulsan la confianza en nuestra solución de contabilidad y impuestos."
|
||||
testimonials={[
|
||||
{
|
||||
id: "test-1",
|
||||
name: "Martina Suárez",
|
||||
role: "Contadora Pública",
|
||||
company: "Estudio Contable MS",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-businesswoman_1098-14872.jpg",
|
||||
imageAlt: "Happy businesswoman",
|
||||
},
|
||||
id: "test-1", name: "Martina Suárez", role: "Contadora Pública", company: "Estudio Contable MS", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-businesswoman_1098-14872.jpg", imageAlt: "Happy businesswoman"},
|
||||
{
|
||||
id: "test-2",
|
||||
name: "Juan Pérez",
|
||||
role: "Emprendedor",
|
||||
company: "Digital Solutions",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-business-leader-using-smartphone-lobby_1262-5625.jpg",
|
||||
imageAlt: "Smiling Business Leader Using Smartphone in Lobby",
|
||||
},
|
||||
id: "test-2", name: "Juan Pérez", role: "Emprendedor", company: "Digital Solutions", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-business-leader-using-smartphone-lobby_1262-5625.jpg", imageAlt: "Smiling Business Leader Using Smartphone in Lobby"},
|
||||
{
|
||||
id: "test-3",
|
||||
name: "Sofía Giménez",
|
||||
role: "Dueña de Pyme",
|
||||
company: "Dulce Tentación",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-with-tablet-front-view_23-2149442288.jpg",
|
||||
imageAlt: "Smiley woman with tablet front view",
|
||||
},
|
||||
id: "test-3", name: "Sofía Giménez", role: "Dueña de Pyme", company: "Dulce Tentación", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-with-tablet-front-view_23-2149442288.jpg", imageAlt: "Smiley woman with tablet front view"},
|
||||
{
|
||||
id: "test-4",
|
||||
name: "Carlos Rodríguez",
|
||||
role: "Consultor Fiscal",
|
||||
company: "Asesoría Integral",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg",
|
||||
imageAlt: "Positive confident businessman posing outside",
|
||||
},
|
||||
id: "test-4", name: "Carlos Rodríguez", role: "Consultor Fiscal", company: "Asesoría Integral", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg", imageAlt: "Positive confident businessman posing outside"},
|
||||
{
|
||||
id: "test-5",
|
||||
name: "Ana Fernández",
|
||||
role: "Profesional Independiente",
|
||||
company: "Freelance Design",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-office-holding-tablet_23-2148356266.jpg",
|
||||
imageAlt: "Smiley woman at office holding tablet",
|
||||
},
|
||||
id: "test-5", name: "Ana Fernández", role: "Profesional Independiente", company: "Freelance Design", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-office-holding-tablet_23-2148356266.jpg", imageAlt: "Smiley woman at office holding tablet"},
|
||||
{
|
||||
id: "test-6",
|
||||
name: "Pablo Castro",
|
||||
role: "Gerente Administrativo",
|
||||
company: "Logística Express",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-employee_1098-16109.jpg",
|
||||
imageAlt: "Happy employee",
|
||||
},
|
||||
id: "test-6", name: "Pablo Castro", role: "Gerente Administrativo", company: "Logística Express", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-employee_1098-16109.jpg", imageAlt: "Happy employee"},
|
||||
]}
|
||||
kpiItems={[
|
||||
{
|
||||
value: "98%",
|
||||
label: "Satisfacción Cliente",
|
||||
},
|
||||
value: "98%", label: "Satisfacción Cliente"},
|
||||
{
|
||||
value: "50%",
|
||||
label: "Tiempo Ahorrado",
|
||||
},
|
||||
value: "50%", label: "Tiempo Ahorrado"},
|
||||
{
|
||||
value: "Rápido",
|
||||
label: "Soporte",
|
||||
},
|
||||
value: "Rápido", label: "Soporte"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-geometric-background-shapes-texture_1194-306797.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-geometric-background-shapes-texture_1194-306797.jpg"
|
||||
imageAlt="Abstract tech background"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6h5de9"
|
||||
logoAlt="[NOMBRE DE TU MARCA] Logo"
|
||||
logoText="[NOMBRE DE TU MARCA]"
|
||||
columns={[
|
||||
{
|
||||
title: "Empresa",
|
||||
items: [
|
||||
title: "Empresa", items: [
|
||||
{
|
||||
label: "Sobre Nosotros",
|
||||
href: "#",
|
||||
},
|
||||
label: "Sobre Nosotros", href: "#"},
|
||||
{
|
||||
label: "Contacto",
|
||||
href: "#",
|
||||
},
|
||||
label: "Contacto", href: "#"},
|
||||
{
|
||||
label: "Carreras",
|
||||
href: "#",
|
||||
},
|
||||
label: "Carreras", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Soluciones",
|
||||
items: [
|
||||
title: "Soluciones", items: [
|
||||
{
|
||||
label: "Monotributo",
|
||||
href: "/app/monotributo",
|
||||
},
|
||||
label: "Monotributo", href: "/app/monotributo"},
|
||||
{
|
||||
label: "IVA",
|
||||
href: "/app/iva",
|
||||
},
|
||||
label: "IVA", href: "/app/iva"},
|
||||
{
|
||||
label: "Ganancias",
|
||||
href: "/app/ganancias",
|
||||
},
|
||||
label: "Ganancias", href: "/app/ganancias"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Soporte",
|
||||
items: [
|
||||
title: "Soporte", items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/#faq",
|
||||
},
|
||||
label: "FAQ", href: "/#faq"},
|
||||
{
|
||||
label: "Ayuda",
|
||||
href: "#",
|
||||
},
|
||||
label: "Ayuda", href: "#"},
|
||||
{
|
||||
label: "Blog",
|
||||
href: "#",
|
||||
},
|
||||
label: "Blog", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Términos de Servicio",
|
||||
href: "#",
|
||||
},
|
||||
label: "Términos de Servicio", href: "#"},
|
||||
{
|
||||
label: "Política de Privacidad",
|
||||
href: "#",
|
||||
},
|
||||
label: "Política de Privacidad", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user