Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-18 11:03:49 +00:00
4 changed files with 78 additions and 39 deletions

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 { Nunito } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Pulido de Suelos Profesional Vinaròs | 24h Disponible",
description: "Expertos en pulido, abrillantado y restauración de mármol, terrazo y piedra en Vinaròs. Servicio 24h, presupuesto gratis. ⭐ 5 estrellas.",
keywords: "pulido de suelos Vinaròs, abrillantado suelos, pulidor de mármol, restauración terrazo, pulido profesional",
metadataBase: new URL("https://pulidosvinaros.com"),
alternates: {
canonical: "https://pulidosvinaros.com",
},
openGraph: {
title: "Pulido de Suelos Profesional en Vinaròs",
description: "Transformamos tus suelos con pulido profesional. Mármol, terrazo, piedra. 24h disponible. Presupuesto gratis.",
url: "https://pulidosvinaros.com",
siteName: "Pulidos de Suelos Vinaròs",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/man-vacuuming-with-vacuum-cleaner-parquet-floor-living-room_1398-3840.jpg",
alt: "Pulido profesional de suelos Vinaròs",
},
],
},
twitter: {
card: "summary_large_image",
title: "Pulido de Suelos Vinaròs - Profesional 24h",
description: "Expertos en mármol, terrazo y piedra. Presupuesto gratis.",
images: ["http://img.b2bpic.net/free-photo/man-vacuuming-with-vacuum-cleaner-parquet-floor-living-room_1398-3840.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -62,23 +62,23 @@ export default function HomePage() {
imageAlt: "Piso pulido profesional brillo",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cleaning-his-house_23-2148112860.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cleaning-his-house_23-2148112860.jpg?_wi=1",
imageAlt: "Mármol restaurado y pulido",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-granite-texture-background_24837-437.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-granite-texture-background_24837-437.jpg?_wi=1",
imageAlt: "Terrazo pulido profesional",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-woman-working_23-2149343977.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-woman-working_23-2149343977.jpg?_wi=1",
imageAlt: "Piedra pulida y abrillantada",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/man-using-robot-vacuum-living-room_23-2149036864.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-using-robot-vacuum-living-room_23-2149036864.jpg?_wi=1",
imageAlt: "Antes - Piso sin pulir",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349193.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349193.jpg?_wi=1",
imageAlt: "Después - Piso pulido y brillante",
},
]}
@@ -137,7 +137,7 @@ export default function HomePage() {
id: 1,
title: "Pulido de Mármol",
description: "Restauración completa del brillo natural del mármol con técnicas profesionales y productos de calidad.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cleaning-his-house_23-2148112860.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cleaning-his-house_23-2148112860.jpg?_wi=2",
imageAlt: "Mármol pulido y brillante",
buttons: [{ text: "Más Información", href: "/servicios" }],
},
@@ -145,7 +145,7 @@ export default function HomePage() {
id: 2,
title: "Pulido de Terrazo",
description: "Tratamiento especializado para terrazo que restaura su lustre y protege la superficie.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-granite-texture-background_24837-437.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-granite-texture-background_24837-437.jpg?_wi=2",
imageAlt: "Terrazo restaurado",
buttons: [{ text: "Más Información", href: "/servicios" }],
},
@@ -153,7 +153,7 @@ export default function HomePage() {
id: 3,
title: "Restauración de Piedra",
description: "Pulido y abrillantado de piedra natural con resultados duraderos y protección profesional.",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-woman-working_23-2149343977.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-woman-working_23-2149343977.jpg?_wi=2",
imageAlt: "Piedra pulida profesional",
buttons: [{ text: "Más Información", href: "/servicios" }],
},
@@ -177,14 +177,14 @@ export default function HomePage() {
id: "before-1",
name: "Proyecto 1 - Antes",
price: "Antes",
imageSrc: "http://img.b2bpic.net/free-photo/man-using-robot-vacuum-living-room_23-2149036864.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-using-robot-vacuum-living-room_23-2149036864.jpg?_wi=2",
imageAlt: "Piso sin pulir - Antes",
},
{
id: "after-1",
name: "Proyecto 1 - Después",
price: "Después",
imageSrc: "http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349193.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349193.jpg?_wi=2",
imageAlt: "Piso pulido y brillante - Después",
},
{
@@ -224,7 +224,7 @@ export default function HomePage() {
role: "Propietaria",
company: "Vinaròs",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1613.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1613.jpg?_wi=1",
imageAlt: "María García",
},
{
@@ -233,7 +233,7 @@ export default function HomePage() {
role: "Empresario",
company: "Restaurante Local",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-executive-work_1098-519.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-executive-work_1098-519.jpg?_wi=1",
imageAlt: "Juan López",
},
{
@@ -242,7 +242,7 @@ export default function HomePage() {
role: "Gerente",
company: "Oficinas Comerciales",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-businesswoman-smiling-happy-standing-city_839833-16454.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-businesswoman-smiling-happy-standing-city_839833-16454.jpg?_wi=1",
imageAlt: "Carmen Rodríguez",
},
{
@@ -251,7 +251,7 @@ export default function HomePage() {
role: "Propietario",
company: "Casa Particular",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/contemplated-serious-young-man-looking-camera_23-2148130297.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/contemplated-serious-young-man-looking-camera_23-2148130297.jpg?_wi=1",
imageAlt: "David Fernández",
},
{
@@ -260,7 +260,7 @@ export default function HomePage() {
role: "Administradora",
company: "Comunidad de Vecinos",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/male-executive-with-glasses_1098-760.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/male-executive-with-glasses_1098-760.jpg?_wi=1",
imageAlt: "Isabel Martínez",
},
{
@@ -269,7 +269,7 @@ export default function HomePage() {
role: "Dueño",
company: "Tienda Retail",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-outside-office-buildings-business-success-concept_58466-12274.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-outside-office-buildings-business-success-concept_58466-12274.jpg?_wi=1",
imageAlt: "Francisco Sánchez",
},
]}

View File

@@ -54,15 +54,15 @@ export default function ServicesPage() {
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cleaning-his-house_23-2148112860.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cleaning-his-house_23-2148112860.jpg?_wi=3",
imageAlt: "Mármol pulido profesional",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-granite-texture-background_24837-437.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-granite-texture-background_24837-437.jpg?_wi=3",
imageAlt: "Terrazo restaurado",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-woman-working_23-2149343977.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-woman-working_23-2149343977.jpg?_wi=3",
imageAlt: "Piedra pulida",
},
]}
@@ -83,7 +83,7 @@ export default function ServicesPage() {
id: 1,
title: "Pulido de Mármol",
description: "Restauramos el brillo natural del mármol mediante técnicas profesionales. Incluye limpieza profunda, pulido multi-fase, cristalización y protección sellante. Perfecto para pisos, escaleras y superficies de mármol envejecidas.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cleaning-his-house_23-2148112860.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cleaning-his-house_23-2148112860.jpg?_wi=4",
imageAlt: "Servicio de pulido de mármol",
buttons: [{ text: "Solicitar Presupuesto", href: "#contact-cta" }],
},
@@ -91,7 +91,7 @@ export default function ServicesPage() {
id: 2,
title: "Pulido de Terrazo",
description: "Tratamiento especializado para terrazo que restaura el lustre original. Utilizamos máquinas de última generación y productos neutros que no dañan la superficie. Ideal para viviendas, comercios y espacios públicos.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-granite-texture-background_24837-437.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-granite-texture-background_24837-437.jpg?_wi=4",
imageAlt: "Servicio de pulido de terrazo",
buttons: [{ text: "Solicitar Presupuesto", href: "#contact-cta" }],
},
@@ -99,7 +99,7 @@ export default function ServicesPage() {
id: 3,
title: "Restauración de Piedra",
description: "Expertos en restauración de piedra natural: granito, pizarra, caliza y arenisca. Pulido, abrillantado y sellado profesional. Protegemos la piedra contra manchas y humedad con tratamientos de última generación.",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-woman-working_23-2149343977.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-woman-working_23-2149343977.jpg?_wi=4",
imageAlt: "Servicio de restauración de piedra",
buttons: [{ text: "Solicitar Presupuesto", href: "#contact-cta" }],
},

View File

@@ -63,21 +63,21 @@ export default function AboutPage() {
id: 1,
title: "Pulido de Mármol",
description: "Restauración completa del brillo natural del mármol con técnicas profesionales y productos de calidad.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cleaning-his-house_23-2148112860.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cleaning-his-house_23-2148112860.jpg?_wi=5",
imageAlt: "Mármol pulido y brillante",
},
{
id: 2,
title: "Pulido de Terrazo",
description: "Tratamiento especializado para terrazo que restaura su lustre y protege la superficie.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-granite-texture-background_24837-437.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-granite-texture-background_24837-437.jpg?_wi=5",
imageAlt: "Terrazo restaurado",
},
{
id: 3,
title: "Restauración de Piedra",
description: "Pulido y abrillantado de piedra natural con resultados duraderos y protección profesional.",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-woman-working_23-2149343977.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-young-woman-working_23-2149343977.jpg?_wi=5",
imageAlt: "Piedra pulida profesional",
},
]}
@@ -107,7 +107,7 @@ export default function AboutPage() {
role: "Propietaria",
company: "Vinaròs",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1613.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1613.jpg?_wi=2",
},
{
id: "2",
@@ -115,7 +115,7 @@ export default function AboutPage() {
role: "Empresario",
company: "Restaurante Local",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-executive-work_1098-519.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-executive-work_1098-519.jpg?_wi=2",
},
{
id: "3",
@@ -123,7 +123,7 @@ export default function AboutPage() {
role: "Gerente",
company: "Oficinas Comerciales",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-businesswoman-smiling-happy-standing-city_839833-16454.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-businesswoman-smiling-happy-standing-city_839833-16454.jpg?_wi=2",
},
{
id: "4",
@@ -131,7 +131,7 @@ export default function AboutPage() {
role: "Propietario",
company: "Casa Particular",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/contemplated-serious-young-man-looking-camera_23-2148130297.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/contemplated-serious-young-man-looking-camera_23-2148130297.jpg?_wi=2",
},
{
id: "5",
@@ -139,7 +139,7 @@ export default function AboutPage() {
role: "Administradora",
company: "Comunidad de Vecinos",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/male-executive-with-glasses_1098-760.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/male-executive-with-glasses_1098-760.jpg?_wi=2",
},
{
id: "6",
@@ -147,7 +147,7 @@ export default function AboutPage() {
role: "Dueño",
company: "Tienda Retail",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-outside-office-buildings-business-success-concept_58466-12274.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-outside-office-buildings-business-success-concept_58466-12274.jpg?_wi=2",
},
]}
kpiItems={[