Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
205
src/app/page.tsx
205
src/app/page.tsx
@@ -32,21 +32,13 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Inicio", id: "hero"},
|
||||
{
|
||||
name: "Nosotros",
|
||||
id: "about",
|
||||
},
|
||||
name: "Nosotros", id: "about"},
|
||||
{
|
||||
name: "Servicios",
|
||||
id: "services",
|
||||
},
|
||||
name: "Servicios", id: "services"},
|
||||
{
|
||||
name: "Contacto",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contacto", id: "contact"},
|
||||
]}
|
||||
brandName="CISYSE"
|
||||
/>
|
||||
@@ -55,19 +47,14 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
logoText="CISYSE - Corporación Iberoamericana de Salud y Seguridad"
|
||||
description="Líderes regionales en consultoría integral de seguridad industrial, salud ocupacional y cumplimiento normativo."
|
||||
buttons={[
|
||||
{
|
||||
text: "Nuestros Servicios",
|
||||
href: "#services",
|
||||
},
|
||||
text: "Nuestros Servicios", href: "#services"},
|
||||
{
|
||||
text: "Contacto",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Contacto", href: "#contact"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/technology-hologram-indoors_23-2151833344.jpg"
|
||||
@@ -93,26 +80,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Auditorías Técnicas",
|
||||
description: "Análisis exhaustivos de cumplimiento legal y estándares internacionales.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/focused-office-lady-glasses-using-tablet-while-two-mature-businessmen-discussing-work-glass-wall-copy-space-communication-concept_74855-14243.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-photo/colleagues-with-safety-equipment_23-2148908449.jpg",
|
||||
buttonText: "Saber más",
|
||||
},
|
||||
title: "Auditorías Técnicas", description: "Análisis exhaustivos de cumplimiento legal y estándares internacionales.", imageSrc: "http://img.b2bpic.net/free-photo/focused-office-lady-glasses-using-tablet-while-two-mature-businessmen-discussing-work-glass-wall-copy-space-communication-concept_74855-14243.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/colleagues-with-safety-equipment_23-2148908449.jpg", buttonText: "Saber más"},
|
||||
{
|
||||
title: "Gestión de EPP",
|
||||
description: "Equipos de protección personal con los más altos estándares de calidad.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-laborer-with-hard-hat-copy-space_23-2148773509.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-photo/electrician-work-uniform-items-wooden-background-top-view_169016-24599.jpg",
|
||||
buttonText: "Saber más",
|
||||
},
|
||||
title: "Gestión de EPP", description: "Equipos de protección personal con los más altos estándares de calidad.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-laborer-with-hard-hat-copy-space_23-2148773509.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/electrician-work-uniform-items-wooden-background-top-view_169016-24599.jpg", buttonText: "Saber más"},
|
||||
{
|
||||
title: "Coordinación Global",
|
||||
description: "Sistemas centralizados para control de seguridad multi-sede.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/car-navigation-screen-dashboard-display-digital-auto-panel_169016-68647.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-photo/man-enjoys-city-skyscrapers-night_482257-91205.jpg",
|
||||
buttonText: "Saber más",
|
||||
},
|
||||
title: "Coordinación Global", description: "Sistemas centralizados para control de seguridad multi-sede.", imageSrc: "http://img.b2bpic.net/free-photo/car-navigation-screen-dashboard-display-digital-auto-panel_169016-68647.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/man-enjoys-city-skyscrapers-night_482257-91205.jpg", buttonText: "Saber más"},
|
||||
]}
|
||||
title="Nuestras Soluciones"
|
||||
description="Herramientas avanzadas para la gestión de riesgos y salud integral."
|
||||
@@ -126,23 +98,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
icon: Shield,
|
||||
title: "Incidentes Reducidos",
|
||||
value: "95%",
|
||||
},
|
||||
id: "1", icon: Shield,
|
||||
title: "Incidentes Reducidos", value: "95%"},
|
||||
{
|
||||
id: "2",
|
||||
icon: Award,
|
||||
title: "Certificaciones",
|
||||
value: "150+",
|
||||
},
|
||||
id: "2", icon: Award,
|
||||
title: "Certificaciones", value: "150+"},
|
||||
{
|
||||
id: "3",
|
||||
icon: Users,
|
||||
title: "Colaboradores Protegidos",
|
||||
value: "25k+",
|
||||
},
|
||||
id: "3", icon: Users,
|
||||
title: "Colaboradores Protegidos", value: "25k+"},
|
||||
]}
|
||||
title="Impacto Medible"
|
||||
description="Resultados verificables que respaldan nuestra gestión en seguridad."
|
||||
@@ -157,47 +120,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "s1",
|
||||
name: "Diagnóstico de Riesgos",
|
||||
price: "Consulta",
|
||||
variant: "Integral",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-investor-tracks-stock-market-data_482257-121080.jpg",
|
||||
},
|
||||
id: "s1", name: "Diagnóstico de Riesgos", price: "Consulta", variant: "Integral", imageSrc: "http://img.b2bpic.net/free-photo/female-investor-tracks-stock-market-data_482257-121080.jpg"},
|
||||
{
|
||||
id: "s2",
|
||||
name: "Capacitación In-Company",
|
||||
price: "Plan Anual",
|
||||
variant: "Formación",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-engineer-white-helmet-gear-showing-construction-plan-explaining-it_114579-14406.jpg",
|
||||
},
|
||||
id: "s2", name: "Capacitación In-Company", price: "Plan Anual", variant: "Formación", imageSrc: "http://img.b2bpic.net/free-photo/female-engineer-white-helmet-gear-showing-construction-plan-explaining-it_114579-14406.jpg"},
|
||||
{
|
||||
id: "s3",
|
||||
name: "Gestión Normativa",
|
||||
price: "Soporte",
|
||||
variant: "Legal",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/financial-documents_1098-14227.jpg",
|
||||
},
|
||||
id: "s3", name: "Gestión Normativa", price: "Soporte", variant: "Legal", imageSrc: "http://img.b2bpic.net/free-photo/financial-documents_1098-14227.jpg"},
|
||||
{
|
||||
id: "s4",
|
||||
name: "Salud Ocupacional",
|
||||
price: "Plan Mensual",
|
||||
variant: "Salud",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-chart-visual-graphics-report-concept_53876-167093.jpg",
|
||||
},
|
||||
id: "s4", name: "Salud Ocupacional", price: "Plan Mensual", variant: "Salud", imageSrc: "http://img.b2bpic.net/free-photo/business-chart-visual-graphics-report-concept_53876-167093.jpg"},
|
||||
{
|
||||
id: "s5",
|
||||
name: "Consultoría ISO",
|
||||
price: "Proyecto",
|
||||
variant: "Normas",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-female-builder-yellow-helmet-holding-white-sign-white-desk-female-architect_140725-35206.jpg",
|
||||
},
|
||||
id: "s5", name: "Consultoría ISO", price: "Proyecto", variant: "Normas", imageSrc: "http://img.b2bpic.net/free-photo/front-view-female-builder-yellow-helmet-holding-white-sign-white-desk-female-architect_140725-35206.jpg"},
|
||||
{
|
||||
id: "s6",
|
||||
name: "Emergencias Industriales",
|
||||
price: "Soporte",
|
||||
variant: "Seguridad",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-senior-sitting-her-office_23-2148341566.jpg",
|
||||
},
|
||||
id: "s6", name: "Emergencias Industriales", price: "Soporte", variant: "Seguridad", imageSrc: "http://img.b2bpic.net/free-photo/smiley-senior-sitting-her-office_23-2148341566.jpg"},
|
||||
]}
|
||||
title="Catálogo de Servicios"
|
||||
description="Planes especializados para cubrir todas las necesidades de su corporación."
|
||||
@@ -210,45 +143,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Seguridad Inigualable",
|
||||
quote: "CISYSE cambió radicalmente nuestra operación.",
|
||||
name: "Elena Rivas",
|
||||
role: "Gerente de Planta",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-man-posing-with-crossed-arms_23-2149206526.jpg",
|
||||
},
|
||||
id: "1", title: "Seguridad Inigualable", quote: "CISYSE cambió radicalmente nuestra operación.", name: "Elena Rivas", role: "Gerente de Planta", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-man-posing-with-crossed-arms_23-2149206526.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Profesionalismo",
|
||||
quote: "Su enfoque técnico es el mejor que hemos recibido.",
|
||||
name: "Carlos Mendieta",
|
||||
role: "Director de RH",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-businessman-architect-hard-hat_1303-18993.jpg",
|
||||
},
|
||||
id: "2", title: "Profesionalismo", quote: "Su enfoque técnico es el mejor que hemos recibido.", name: "Carlos Mendieta", role: "Director de RH", imageSrc: "http://img.b2bpic.net/free-photo/senior-businessman-architect-hard-hat_1303-18993.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Cumplimiento Total",
|
||||
quote: "Pasamos todas nuestras auditorías sin errores gracias a ellos.",
|
||||
name: "Sofia Torres",
|
||||
role: "CEO Corporativa",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-13618.jpg",
|
||||
},
|
||||
id: "3", title: "Cumplimiento Total", quote: "Pasamos todas nuestras auditorías sin errores gracias a ellos.", name: "Sofia Torres", role: "CEO Corporativa", imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-13618.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
title: "Impacto Positivo",
|
||||
quote: "La seguridad es ahora nuestra ventaja competitiva.",
|
||||
name: "Diego Flores",
|
||||
role: "Gerente de Operaciones",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/solar-panels-industry-technician-high-tech-factory-inspection-quality-control-production_482257-132256.jpg",
|
||||
},
|
||||
id: "4", title: "Impacto Positivo", quote: "La seguridad es ahora nuestra ventaja competitiva.", name: "Diego Flores", role: "Gerente de Operaciones", imageSrc: "http://img.b2bpic.net/free-photo/solar-panels-industry-technician-high-tech-factory-inspection-quality-control-production_482257-132256.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
title: "Expertos en la materia",
|
||||
quote: "Su conocimiento normativo es de primer nivel.",
|
||||
name: "Ana Galarza",
|
||||
role: "Directora de Seguridad",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-mature-businessman-looking-away_23-2147955371.jpg",
|
||||
},
|
||||
id: "5", title: "Expertos en la materia", quote: "Su conocimiento normativo es de primer nivel.", name: "Ana Galarza", role: "Directora de Seguridad", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-mature-businessman-looking-away_23-2147955371.jpg"},
|
||||
]}
|
||||
title="Historias de Éxito"
|
||||
description="Testimonios reales de corporaciones que han transformado su seguridad con nosotros."
|
||||
@@ -262,28 +165,17 @@ export default function LandingPage() {
|
||||
description="Estamos listos para implementar las soluciones de salud y seguridad que su empresa necesita hoy."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Nombre Completo",
|
||||
required: true,
|
||||
name: "name", type: "text", placeholder: "Nombre Completo", required: true,
|
||||
},
|
||||
{
|
||||
name: "company",
|
||||
type: "text",
|
||||
placeholder: "Empresa",
|
||||
required: true,
|
||||
name: "company", type: "text", placeholder: "Empresa", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Correo Electrónico",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "Correo Electrónico", required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Cuéntenos sus necesidades",
|
||||
rows: 4,
|
||||
name: "message", placeholder: "Cuéntenos sus necesidades", rows: 4,
|
||||
required: true,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-concept-with-prism-light-deflection_23-2148599220.jpg"
|
||||
@@ -294,42 +186,27 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Empresa",
|
||||
items: [
|
||||
title: "Empresa", items: [
|
||||
{
|
||||
label: "Nosotros",
|
||||
href: "#about",
|
||||
},
|
||||
label: "Nosotros", href: "#about"},
|
||||
{
|
||||
label: "Servicios",
|
||||
href: "#services",
|
||||
},
|
||||
label: "Servicios", href: "#services"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacidad",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacidad", href: "#"},
|
||||
{
|
||||
label: "Términos",
|
||||
href: "#",
|
||||
},
|
||||
label: "Términos", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contacto",
|
||||
items: [
|
||||
title: "Contacto", items: [
|
||||
{
|
||||
label: "Email: info@cisyse.com",
|
||||
href: "mailto:info@cisyse.com",
|
||||
},
|
||||
label: "Email: info@cisyse.com", href: "mailto:info@cisyse.com"},
|
||||
{
|
||||
label: "Oficinas",
|
||||
href: "#",
|
||||
},
|
||||
label: "Oficinas", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -340,4 +217,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #000000;
|
||||
--card: #481f1f;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #ffffff;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000612e6;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #280101;
|
||||
--secondary-cta: #361311;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #f6d4d4;
|
||||
--accent: #51000b;
|
||||
--background-accent: #ff2231;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user