Switch to version 2: remove src/app/gallery/page.tsx
This commit is contained in:
@@ -1,140 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import { Camera } from 'lucide-react';
|
||||
|
||||
export default function GalleryPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="small"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Crescendo SL"
|
||||
navItems={[
|
||||
{ name: "Inicio", id: "/" },
|
||||
{ name: "Servicios", id: "#services" },
|
||||
{ name: "Beneficios", id: "#benefits" },
|
||||
{ name: "Galería", id: "#gallery" },
|
||||
{ name: "Contacto", id: "#contact" },
|
||||
{ name: "Preguntas", id: "#faq" },
|
||||
{ name: "Llamar", id: "tel:+34971123456" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
title="Galería de Nuestras Instalaciones"
|
||||
description="Descubre nuestros modernos espacios de trabajo, coworking y servicios empresariales. Fotografías de alta calidad de nuestras instalaciones en el centro de Palma."
|
||||
background={{ variant: "glowing-orb" }}
|
||||
kpis={[
|
||||
{ value: "1000m²", label: "Espacio Total" },
|
||||
{ value: "50+", label: "Clientes Felices" },
|
||||
{ value: "24/7", label: "Acceso Disponible" }
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
tag="Galería Visual"
|
||||
tagIcon={Camera}
|
||||
buttons={[
|
||||
{ text: "Solicitar Visita", href: "#contact" },
|
||||
{ text: "Ver Servicios", href: "/" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-practicing-social-integration-workspace_23-2149405375.jpg?_wi=1"
|
||||
imageAlt="Gallery hero image of workspace"
|
||||
mediaAnimation="blur-reveal"
|
||||
imagePosition="right"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery">
|
||||
<FeatureCardThree
|
||||
title="Espacios y Servicios en Detalle"
|
||||
description="Explora nuestra galería de fotos de alta calidad. Desde espacios de coworking hasta oficinas privadas, salas de reuniones y áreas comunes."
|
||||
features={[
|
||||
{
|
||||
id: "01", title: "Coworking Abierto", description: "Espacios de trabajo compartidos con ambiente colaborativo, conexión a internet de alta velocidad y áreas comunes completamente equipadas.", imageSrc: "http://img.b2bpic.net/free-photo/people-practicing-social-integration-workspace_23-2149405375.jpg?_wi=1", imageAlt: "Modern coworking space with shared desks and natural light"
|
||||
},
|
||||
{
|
||||
id: "02", title: "Oficinas Privadas", description: "Oficinas completamente equipadas para empresas y startups. Privacidad, profesionalismo y flexibilidad en ubicaciones céntrica.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-talking-phone_23-2149426651.jpg?_wi=2", imageAlt: "Private executive office with modern furniture and windows"
|
||||
},
|
||||
{
|
||||
id: "03", title: "Salas de Reuniones", description: "Salas de conferencias modernas equipadas con proyectores, videoconferencia y pizarras. Disponibles por horas o días.", imageSrc: "http://img.b2bpic.net/free-photo/boss-instructing-assistant-colleagues-standing-sitting-table-with-monitor-documents-manager-pointing-paper-listening-coworker-business-communication-concept_74855-11543.jpg?_wi=2", imageAlt: "Conference room with modern equipment and professional setup"
|
||||
},
|
||||
{
|
||||
id: "04", title: "Áreas Comunes", description: "Espacios de relax, cafetería y zonas de networking para que los profesionales puedan conectar y colaborar.", imageSrc: "http://img.b2bpic.net/free-photo/people-practicing-social-integration-workspace_23-2149405375.jpg?_wi=2", imageAlt: "Common areas with kitchen, lounge seating and social spaces"
|
||||
},
|
||||
{
|
||||
id: "05", title: "Recepción Profesional", description: "Recepción 24/7 con personal profesional para manejo de llamadas, correo y bienvenida de visitantes.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-employee-holding-resignation-letter_23-2149480571.jpg?_wi=2", imageAlt: "Professional reception desk with trained staff"
|
||||
},
|
||||
{
|
||||
id: "06", title: "Entrada Principal", description: "Ubicación céntrica en C. de la Fàbrica 29, fácil acceso, transporte público cercano y aparcamiento disponible.", imageSrc: "http://img.b2bpic.net/free-photo/short-break-cup-coffee_329181-19687.jpg?_wi=2", imageAlt: "Building entrance with modern architecture and signage"
|
||||
}
|
||||
]}
|
||||
carouselMode="buttons"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Reservar Visita", href: "#contact" },
|
||||
{ text: "Volver al Inicio", href: "/" }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Navegación", items: [
|
||||
{ label: "Inicio", href: "/" },
|
||||
{ label: "Servicios", href: "/#services" },
|
||||
{ label: "Beneficios", href: "/#benefits" },
|
||||
{ label: "Galería", href: "/gallery" },
|
||||
{ label: "Contacto", href: "/#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contacto", items: [
|
||||
{ label: "☎ +34 971 123 456", href: "tel:+34971123456" },
|
||||
{ label: "📧 info@crescendosl.es", href: "mailto:info@crescendosl.es" },
|
||||
{ label: "📍 C. de la Fàbrica 29", href: "https://maps.google.com/?q=C.+de+la+Fàbrica+29,+07013+Palma" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Política de Privacidad", href: "#" },
|
||||
{ label: "Términos de Servicio", href: "#" },
|
||||
{ label: "Cookies", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Síguenos", items: [
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
bottomLeftText="© 2025 Crescendo SL. Todos los derechos reservados."
|
||||
bottomRightText="Centro de Negocios en Palma"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user