Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ad0529a65b | |||
| 59fdbdca51 | |||
| c76bedbedc | |||
| 3dd67c0882 | |||
| e484d9cdc9 | |||
| bbae54cbc1 | |||
| 1d5d444a81 | |||
| 205e0c2c4c | |||
| 73ea345662 |
96
src/app/andes-brand/page.tsx
Normal file
96
src/app/andes-brand/page.tsx
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
|
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
||||||
|
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
|
||||||
|
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||||
|
import { Tv, Camera, Film, Users, Zap, Briefcase } from "lucide-react"; // Import necessary icons
|
||||||
|
|
||||||
|
export default function AndesBrandPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="none"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="Andes Brand"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Inicio", id: "hero-andes" },
|
||||||
|
{ name: "Servicios", id: "services-andes" },
|
||||||
|
{ name: "Contacto", id: "contact-andes" }
|
||||||
|
]}
|
||||||
|
button={{ text: "WhatsApp", href: "https://wa.me/56927078086" }}
|
||||||
|
/>
|
||||||
|
<div id="hero-andes" data-section="hero-andes">
|
||||||
|
<HeroBillboard
|
||||||
|
title="Andes Brand"
|
||||||
|
description="Creamos experiencias audiovisuales impactantes para negocios y clientes privados, impulsando sus ventas y atrayendo nuevos clientes."
|
||||||
|
buttons={[
|
||||||
|
{ text: "Contáctanos por WhatsApp", href: "https://wa.me/56927078086" },
|
||||||
|
{ text: "Descubre Nuestros Servicios", href: "#services-andes", props: { className: "font-bold text-lg px-8 py-4 bg-primary-cta text-primary-cta-text hover:bg-primary-cta/90 transition-colors duration-200" } }
|
||||||
|
]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/film-reel-clapper-board-projector-stand_23-2150338782.jpg"
|
||||||
|
imageAlt="Andes Brand Audiovisual"
|
||||||
|
background={{ variant: 'radial-gradient' }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div id="services-andes" data-section="services-andes">
|
||||||
|
<FeatureCardTwentyFive
|
||||||
|
title="Nuestros Servicios Audiovisuales"
|
||||||
|
description="Diseñamos y producimos contenido que eleva tu marca, conecta con tu audiencia y genera resultados tangibles."
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
title: "Contenido Audiovisual para Empresas", description: "Producimos videos corporativos, publicitarios, animados y documentales que comunican tu mensaje de manera efectiva, fortalecen tu marca, y atraen nuevos clientes. Ideal para marketing, presentaciones internas y lanzamientos de productos.", icon: Briefcase,
|
||||||
|
mediaItems: [
|
||||||
|
{ imageSrc: "http://img.b2bpic.net/free-photo/corporate-business-video-meeting_1232-234.jpg?_wi=1", imageAlt: "Corporate video production" },
|
||||||
|
{ imageSrc: "http://img.b2bpic.net/free-photo/corporate-business-video-meeting_1232-234.jpg?_wi=2", imageAlt: "Corporate video production" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Producción Audiovisual para Clientes Privados", description: "Capturamos tus momentos más especiales con videoclips personalizados, cobertura de eventos (bodas, cumpleaños), y proyectos personales. Historias contadas con creatividad y profesionalismo, diseñadas para emocionar y perdurar.", icon: Camera,
|
||||||
|
mediaItems: [
|
||||||
|
{ imageSrc: "http://img.b2bpic.net/free-photo/cinematographer-shooting-wedding-video_23-2148416668.jpg?_wi=1", imageAlt: "Private event videography" },
|
||||||
|
{ imageSrc: "http://img.b2bpic.net/free-photo/cinematographer-shooting-wedding-video_23-2148416668.jpg?_wi=2", imageAlt: "Private event videography" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div id="contact-andes" data-section="contact-andes">
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
logoText="Andes Brand"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{ label: "Inicio", href: "#hero-andes" },
|
||||||
|
{ label: "Servicios", href: "#services-andes" },
|
||||||
|
{ label: "Contacto", href: "#contact-andes" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{ label: "WhatsApp", href: "https://wa.me/56927078086" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -11,14 +11,14 @@
|
|||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #0a0a0a;
|
--background: #0a0a0a;
|
||||||
--card: #161616;
|
--card: #1a1a1a;
|
||||||
--foreground: #f0f0f0;
|
--foreground: #ffffffe6;
|
||||||
--primary-cta: #ffffff;
|
--primary-cta: #e6e6e6;
|
||||||
--primary-cta-text: #0a0a0a;
|
--primary-cta-text: #0a0a0a;
|
||||||
--secondary-cta: #1e1e1e;
|
--secondary-cta: #1a1a1a;
|
||||||
--secondary-cta-text: #e0e0e0;
|
--secondary-cta-text: #ffffffe6;
|
||||||
--accent: #d0d0d0;
|
--accent: #737373;
|
||||||
--background-accent: #9a9a9a;
|
--background-accent: #737373;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user