diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 200e68a..39b0324 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Nunito } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "TALLERES R&M - Reparación de Coches en Pamplona", description: "Taller mecánico especializado en reparación y mantenimiento de vehículos en Pamplona. Servicios profesionales, garantía 12 meses y precios competitivos.", keywords: "taller mecánico Pamplona, reparación coches, mantenimiento vehículos, Berriaiz, mecánico profesional", openGraph: { - title: "TALLERES R&M - Tu Taller de Confianza en Pamplona", description: "Reparación y mantenimiento integral de vehículos. 20 años de experiencia. Equipo certificado y garantía garantizada.", type: "website", siteName: "TALLERES R&M" - }, - twitter: { - card: "summary_large_image", title: "TALLERES R&M - Reparación de Coches", description: "Taller mecánico profesional en Pamplona - Reparación, mantenimiento y diagnóstico" - }, - robots: { - index: true, - follow: true - } -}; + title: "TALLERES R&M - Reparación y Mantenimiento de Coches", description: "Servicios integrales de mantenimiento, reparación y diagnóstico mecánico. Más de 20 años de experiencia en Pamplona."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children} - ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 04f84ff..3d594df 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,10 +9,20 @@ import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import TeamCardFive from "@/components/sections/team/TeamCardFive"; import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; import ContactCenter from "@/components/sections/contact/ContactCenter"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Award, CheckCircle, Percent, Shield, Users, Wrench, Zap } from "lucide-react"; +import { Award, CheckCircle, Percent, Shield, Users, Wrench, Zap, Phone, Mail } from "lucide-react"; +import { useState } from "react"; export default function LandingPage() { + const [budgetSubmitted, setBudgetSubmitted] = useState(false); + + const handleBudgetSubmit = (data: Record) => { + console.log("Budget request submitted:", data); + setBudgetSubmitted(true); + setTimeout(() => setBudgetSubmitted(false), 3000); + }; + return ( + + + + ); -} \ No newline at end of file +}