Add src/app/servicios/page.tsx
This commit is contained in:
109
src/app/servicios/page.tsx
Normal file
109
src/app/servicios/page.tsx
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
|
import FeatureBorderGlow from "@/components/sections/feature/FeatureBorderGlow";
|
||||||
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
|
import { Sparkles, Monitor, Code, Search, Share2, Palette } from "lucide-react";
|
||||||
|
|
||||||
|
export default function ServiciosPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="none"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="metallic"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="Webild"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Trabajo", id: "work" },
|
||||||
|
{ name: "Servicios", href: "/servicios" },
|
||||||
|
{ name: "Nosotros", href: "/nosotros" },
|
||||||
|
{ name: "Contacto", id: "contact" },
|
||||||
|
]}
|
||||||
|
button={{ text: "Empezar", href: "#contact" }}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<FeatureBorderGlow
|
||||||
|
tag="Soluciones Digitales Integrales"
|
||||||
|
title="Nuestros Servicios"
|
||||||
|
description="En MGL, ofrecemos una suite completa de servicios digitales diseñada para impulsar su negocio, fortalecer su presencia en línea y conectar con su audiencia de manera efectiva."
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
animationType="slide-up"
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
icon: Monitor,
|
||||||
|
title: "Diseño Web y UX/UI", description: "Creamos experiencias de usuario intuitivas y diseños web visualmente atractivos que cautivan a sus visitantes y los convierten en clientes."},
|
||||||
|
{
|
||||||
|
icon: Code,
|
||||||
|
title: "Desarrollo Web Personalizado", description: "Desde sitios web informativos hasta plataformas de comercio electrónico robustas, construimos soluciones a medida, rápidas, seguras y escalables."},
|
||||||
|
{
|
||||||
|
icon: Search,
|
||||||
|
title: "SEO y Marketing Digital", description: "Mejoramos su visibilidad en los motores de búsqueda y desarrollamos estrategias de marketing digital para atraer tráfico cualificado y aumentar sus ventas."},
|
||||||
|
{
|
||||||
|
icon: Share2,
|
||||||
|
title: "Gestión de Redes Sociales", description: "Creamos y ejecutamos estrategias de contenido atractivas para construir su comunidad en línea y fortalecer la lealtad de sus clientes."},
|
||||||
|
{
|
||||||
|
icon: Palette,
|
||||||
|
title: "Branding e Identidad Visual", description: "Desarrollamos una identidad de marca coherente y memorable que resuena con su audiencia y lo diferencia de la competencia."},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<ContactCTA
|
||||||
|
tag="Contáctenos"
|
||||||
|
title="¿Listo para Transformar su Presencia Digital?"
|
||||||
|
description="Construyamos algo extraordinario juntos. Póngase en contacto y hablemos de su próximo proyecto."
|
||||||
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
|
buttons={[
|
||||||
|
{ text: "Iniciar Proyecto", href: "#contact" },
|
||||||
|
{ text: "Ver Nuestro Trabajo", href: "#work" },
|
||||||
|
]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<FooterBase
|
||||||
|
logoText="Webild"
|
||||||
|
copyrightText="© 2026 | Webild"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Empresa", items: [
|
||||||
|
{ label: "Nosotros", href: "/nosotros" },
|
||||||
|
{ label: "Servicios", href: "/servicios" },
|
||||||
|
{ label: "Trabajo", id: "work" },
|
||||||
|
{ label: "Contacto", id: "contact" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Servicios", items: [
|
||||||
|
{ label: "Desarrollo Web", href: "/servicios" },
|
||||||
|
{ label: "SEO", href: "/servicios" },
|
||||||
|
{ label: "Branding", href: "/servicios" },
|
||||||
|
{ label: "Diseño UI/UX", href: "/servicios" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Conectar", items: [
|
||||||
|
{ label: "Twitter", href: "#" },
|
||||||
|
{ label: "LinkedIn", href: "#" },
|
||||||
|
{ label: "Instagram", href: "#" },
|
||||||
|
{ label: "Dribbble", href: "#" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user