Merge version_1 into main #1
@@ -62,21 +62,21 @@ export default function AboutPage() {
|
||||
id: "01",
|
||||
title: "Excelencia",
|
||||
description: "Comprometidos con la calidad en cada entrega. Buscamos constantemente mejorar y superarnos a nosotros mismos.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teamwork-developing-new-project-together_1098-21664.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teamwork-developing-new-project-together_1098-21664.jpg?_wi=2",
|
||||
imageAlt: "Excelencia en el trabajo",
|
||||
},
|
||||
{
|
||||
id: "02",
|
||||
title: "Transparencia",
|
||||
description: "Comunicación clara y honesta con nuestros clientes. Resultados verificables y reportes detallados.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-analysing-charts-laptop-start-up-business-meeting-room_482257-5026.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-analysing-charts-laptop-start-up-business-meeting-room_482257-5026.jpg?_wi=2",
|
||||
imageAlt: "Transparencia en resultados",
|
||||
},
|
||||
{
|
||||
id: "03",
|
||||
title: "Innovación",
|
||||
description: "Adoptamos las últimas tecnologías y metodologías para mantener nuestras estrategias al frente de la industria.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-filmmakers-editing-film-content_482257-121431.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-filmmakers-editing-film-content_482257-121431.jpg?_wi=2",
|
||||
imageAlt: "Innovación tecnológica",
|
||||
},
|
||||
]}
|
||||
@@ -100,7 +100,7 @@ export default function AboutPage() {
|
||||
role: "CEO",
|
||||
company: "TechVentures",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-handsome-businessman_1262-21003.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-handsome-businessman_1262-21003.jpg?_wi=2",
|
||||
imageAlt: "professional business executive portrait",
|
||||
},
|
||||
{
|
||||
@@ -109,7 +109,7 @@ export default function AboutPage() {
|
||||
role: "Directora de Marketing",
|
||||
company: "InnovateLabs",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/face-happy-male-executive-looking-camera-smiling_1262-14920.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/face-happy-male-executive-looking-camera-smiling_1262-14920.jpg?_wi=2",
|
||||
imageAlt: "business professional woman portrait",
|
||||
},
|
||||
{
|
||||
@@ -118,7 +118,7 @@ export default function AboutPage() {
|
||||
role: "Gerente de Ventas",
|
||||
company: "GrowthCorp",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businesswoman-her-employees-background_1262-20305.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businesswoman-her-employees-background_1262-20305.jpg?_wi=2",
|
||||
imageAlt: "business professional man headshot",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,28 +1,48 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Montserrat, Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Montserrat } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Clickforge Digital - Agencia de Marketing Digital",
|
||||
description: "Soluciones de marketing digital estratégico para acelerar el crecimiento de tu negocio. Estrategia, contenidos y gestión de redes sociales profesionales.",
|
||||
keywords: "agencia marketing digital, marketing strategy, gestión redes sociales, consultoría digital, marketing automation",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Clickforge Digital - Marketing Digital Estratégico",
|
||||
description: "Transformamos estrategias digitales en resultados. Agencia especializada en marketing digital que genera confianza y crecimiento.",
|
||||
type: "website",
|
||||
siteName: "Clickforge Digital",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/futuristic-infographic-template_23-2148459039.jpg",
|
||||
alt: "Clickforge Digital - Marketing Digital",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Clickforge Digital - Marketing Digital",
|
||||
description: "Soluciones digitales estratégicas para tu negocio",
|
||||
images: ["http://img.b2bpic.net/free-vector/futuristic-infographic-template_23-2148459039.jpg"],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -31,7 +51,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +65,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -83,28 +83,28 @@ export default function HomePage() {
|
||||
id: "01",
|
||||
title: "Análisis y Estrategia",
|
||||
description: "Diagnóstico profundo de tu presencia digital con análisis competitivo, identificación de oportunidades y estrategia personalizada para máximo impacto.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-analysing-charts-laptop-start-up-business-meeting-room_482257-5026.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-analysing-charts-laptop-start-up-business-meeting-room_482257-5026.jpg?_wi=1",
|
||||
imageAlt: "Análisis digital y estrategia",
|
||||
},
|
||||
{
|
||||
id: "02",
|
||||
title: "Gestión de Redes Sociales",
|
||||
description: "Campañas estratégicas en redes sociales que generan engagement, crean comunidad y amplían tu alcance con contenido relevante y datos.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-work-concept_1388-81.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-work-concept_1388-81.jpg?_wi=1",
|
||||
imageAlt: "Gestión de redes sociales",
|
||||
},
|
||||
{
|
||||
id: "03",
|
||||
title: "Estrategia de Contenidos",
|
||||
description: "Creación de contenido atractivo y optimizado que posiciona tu marca como referente, mejora SEO y atrae clientes calificados.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-filmmakers-editing-film-content_482257-121431.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-filmmakers-editing-film-content_482257-121431.jpg?_wi=1",
|
||||
imageAlt: "Estrategia de contenidos",
|
||||
},
|
||||
{
|
||||
id: "04",
|
||||
title: "Consultoría Digital",
|
||||
description: "Asesoramiento experto para optimizar tu presencia digital, mejorar conversiones y maximizar el retorno de tu inversión en marketing.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teamwork-developing-new-project-together_1098-21664.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teamwork-developing-new-project-together_1098-21664.jpg?_wi=1",
|
||||
imageAlt: "Consultoría digital",
|
||||
},
|
||||
]}
|
||||
@@ -131,7 +131,7 @@ export default function HomePage() {
|
||||
role: "CEO",
|
||||
company: "TechVentures",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-handsome-businessman_1262-21003.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-handsome-businessman_1262-21003.jpg?_wi=1",
|
||||
imageAlt: "professional business executive portrait",
|
||||
},
|
||||
{
|
||||
@@ -140,7 +140,7 @@ export default function HomePage() {
|
||||
role: "Directora de Marketing",
|
||||
company: "InnovateLabs",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/face-happy-male-executive-looking-camera-smiling_1262-14920.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/face-happy-male-executive-looking-camera-smiling_1262-14920.jpg?_wi=1",
|
||||
imageAlt: "business professional woman portrait",
|
||||
},
|
||||
{
|
||||
@@ -149,7 +149,7 @@ export default function HomePage() {
|
||||
role: "Gerente de Ventas",
|
||||
company: "GrowthCorp",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businesswoman-her-employees-background_1262-20305.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-businesswoman-her-employees-background_1262-20305.jpg?_wi=1",
|
||||
imageAlt: "business professional man headshot",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -50,28 +50,28 @@ export default function ServicesPage() {
|
||||
id: "01",
|
||||
title: "Análisis y Estrategia Digital",
|
||||
description: "Análisis profundo de tu mercado, competidores y audiencia. Desarrollamos estrategias personalizadas basadas en datos reales para posicionar tu marca de forma efectiva.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-analysing-charts-laptop-start-up-business-meeting-room_482257-5026.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-analysing-charts-laptop-start-up-business-meeting-room_482257-5026.jpg?_wi=3",
|
||||
imageAlt: "Análisis digital y estrategia",
|
||||
},
|
||||
{
|
||||
id: "02",
|
||||
title: "Gestión de Redes Sociales",
|
||||
description: "Gestión estratégica de todas tus redes sociales con contenido creativo, campañas dirigidas y comunidad activa que genera lealtad de marca.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-work-concept_1388-81.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-work-concept_1388-81.jpg?_wi=2",
|
||||
imageAlt: "Gestión de redes sociales",
|
||||
},
|
||||
{
|
||||
id: "03",
|
||||
title: "Producción de Contenidos",
|
||||
description: "Creación de contenido de alta calidad: artículos, videos, infografías y más. Todo optimizado para SEO y diseñado para convertir visitantes en clientes.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-filmmakers-editing-film-content_482257-121431.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-filmmakers-editing-film-content_482257-121431.jpg?_wi=3",
|
||||
imageAlt: "Estrategia de contenidos",
|
||||
},
|
||||
{
|
||||
id: "04",
|
||||
title: "Consultoría Digital Integral",
|
||||
description: "Asesoramiento completo para optimizar tu presencia digital, mejorar conversiones, y maximizar el retorno de inversión en marketing.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teamwork-developing-new-project-together_1098-21664.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teamwork-developing-new-project-together_1098-21664.jpg?_wi=3",
|
||||
imageAlt: "Consultoría digital",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user