Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2880c927d5 | |||
| e5d662bc8c | |||
| a1ac50d84c | |||
| 97f6d70118 | |||
| 1c665df92f | |||
| 63d69c4b7b | |||
| 3259a1b495 |
@@ -1,53 +1,21 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "MasNegocioOnline | Tu Socio Digital Completo", description: "Soluciones digitales integrales: diseño web, producción de video y desarrollo backend. Transforma tu negocio online con MasNegocioOnline. Consulta gratuita disponible.", keywords: "agencia digital, diseño web, producción de video, desarrollo backend, soluciones digitales, presencia online, transformación digital", metadataBase: new URL("https://masnegocioonline.com"),
|
title: "MasNegocioOnline", description: "Tu Socio Digital Completo"
|
||||||
alternates: {
|
|
||||||
canonical: "https://masnegocioonline.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "MasNegocioOnline | Tu Socio Digital Completo", description: "Soluciones digitales integrales para tu negocio: diseño web, producción de video y software personalizado.", url: "https://masnegocioonline.com", siteName: "MasNegocioOnline", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APxTK9waKpyD1PbIyKKLLp9fvk/uploaded-1772510046149-21ohwb3y.png", alt: "MasNegocioOnline"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "MasNegocioOnline | Tu Socio Digital Completo", description: "Transforma tu negocio con nuestras soluciones digitales integrales", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APxTK9waKpyD1PbIyKKLLp9fvk/uploaded-1772510046149-21ohwb3y.png"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="es">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1383,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
|||||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||||
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
import { Award, CheckCircle, Clock, Globe, MessageCircle, MessageSquare, Trophy, TrendingUp, Users, Zap, Phone, MessageCircleMore } from "lucide-react";
|
import { Award, CheckCircle, Clock, Globe, MessageCircle, MessageSquare, Trophy, TrendingUp, Users, Zap, Phone, MessageCircleMore, Zap as ZapTag, Gauge, Rocket } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -58,6 +58,8 @@ export default function LandingPage() {
|
|||||||
imageAlt="MasNegocioOnline - Tu Socio Digital Completo"
|
imageAlt="MasNegocioOnline - Tu Socio Digital Completo"
|
||||||
mediaAnimation="opacity"
|
mediaAnimation="opacity"
|
||||||
frameStyle="card"
|
frameStyle="card"
|
||||||
|
buttonClassName="first:bg-gradient-to-r first:from-[#25D366] first:to-[#128C7E] first:text-white first:font-bold first:shadow-lg first:hover:shadow-xl first:transition-all first:duration-300"
|
||||||
|
buttonTextClassName="first:font-bold"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -66,21 +68,22 @@ export default function LandingPage() {
|
|||||||
title="Nuestros Servicios"
|
title="Nuestros Servicios"
|
||||||
description="Ofrecemos soluciones integrales de transformación digital para empresas que buscan escalar online"
|
description="Ofrecemos soluciones integrales de transformación digital para empresas que buscan escalar online"
|
||||||
tag="Servicios Digitales"
|
tag="Servicios Digitales"
|
||||||
|
tagIcon={Zap}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Diseño Web", price: "Desde $1,500", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-responsive-website-design_23-2149483808.jpg", imageAlt: "Diseño Web Responsivo"
|
id: "1", name: "Diseño Web", price: "Desde $1,500", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-responsive-website-design_23-2149483808.jpg", imageAlt: "Diseño Web Responsivo Que Convierte: SEO y Performance Incluidos"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Producción de Video", price: "Desde $800", imageSrc: "http://img.b2bpic.net/free-photo/professional-agency-setup-cinematic-footage-creation-video-editing_482257-118951.jpg", imageAlt: "Producción y Edición de Video"
|
id: "2", name: "Producción de Video", price: "Desde $800", imageSrc: "http://img.b2bpic.net/free-photo/professional-agency-setup-cinematic-footage-creation-video-editing_482257-118951.jpg", imageAlt: "Producción de Video Cinematográfica a Precio Accesible: Edición Profesional Rápida"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Desarrollo Backend", price: "Desde $2,000", imageSrc: "http://img.b2bpic.net/free-photo/programming-software-code-application-technology-concept_53876-123931.jpg", imageAlt: "Desarrollo de Software Personalizado"
|
id: "3", name: "Desarrollo Backend", price: "Desde $2,000", imageSrc: "http://img.b2bpic.net/free-photo/programming-software-code-application-technology-concept_53876-123931.jpg", imageAlt: "Software Personalizado Escalable: Desarrollo Backend de Clase Mundial"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4", name: "Bot para Llamadas", price: "Desde $1,200", imageSrc: "http://img.b2bpic.net/free-photo/customer-service-concept-headset_23-2147659832.jpg", imageAlt: "Bot Inteligente para Llamadas Automatizadas"
|
id: "4", name: "Bot para Llamadas", price: "Desde $1,200", imageSrc: "http://img.b2bpic.net/free-photo/customer-service-concept-headset_23-2147659832.jpg", imageAlt: "Bot IA para Llamadas Automatizadas: Atención 24/7 Sin Costo Humano"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5", name: "Bot de WhatsApp", price: "Desde $800", imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-concept-smartphone_23-2147659898.jpg", imageAlt: "Bot de WhatsApp para Respuestas Automáticas"
|
id: "5", name: "Bot de WhatsApp", price: "Desde $800", imageSrc: "http://img.b2bpic.net/free-photo/social-media-marketing-concept-smartphone_23-2147659898.jpg", imageAlt: "Bot WhatsApp Inteligente: Respuestas Instantáneas que Multiplican Ventas"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #15479c;;
|
--accent: #15479c;;
|
||||||
--background-accent: #a8cce8;; */
|
--background-accent: #a8cce8;; */
|
||||||
|
|
||||||
--background: #f5f5f5;;
|
--background: #ffffff;;
|
||||||
--card: #ffffff;;
|
--card: #f9f9f9;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #000612e6;;
|
||||||
--primary-cta: #1c1c1c;;
|
--primary-cta: #15479c;;
|
||||||
--primary-cta-text: #f5f5f5;;
|
--primary-cta-text: #ffffff;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #f9f9f9;;
|
||||||
--secondary-cta-text: #1c1c1c;;
|
--secondary-cta-text: #000612e6;;
|
||||||
--accent: #15479c;;
|
--accent: #e2e2e2;;
|
||||||
--background-accent: #a8cce8;;
|
--background-accent: #c4c4c4;;
|
||||||
|
|
||||||
/* 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