Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 406e602e68 | |||
| f94462c060 | |||
| 0764fd4163 | |||
| 3fe2339c18 | |||
| 29df080548 | |||
| 118b5aa35a | |||
| 547fbe4275 | |||
| 5902fdfdd5 | |||
| 1f7081fb5a | |||
| eb9e47280b | |||
| f7dc7fb05e | |||
| d3f68b1781 | |||
| b7eca0f84c |
@@ -1,54 +1,22 @@
|
||||
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 type { Metadata } from 'next';
|
||||
import { Outfit } from 'next/font/google';
|
||||
import './globals.css';
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito", subsets: ["latin"],
|
||||
});
|
||||
const outfit = Outfit({ subsets: ['latin'] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Vulcanizare Mobilă Cluj | Road-Runner – Serviciu Rapid la Domiciliu", description: "Serviciu de vulcanizare mobilă în Cluj-Napoca. Reparații pană, schimb anvelope la domiciliu. Intervenție rapidă ≤30 min. Sună: 0744 237 237", keywords: "vulcanizare mobilă Cluj, schimb anvelope Cluj, pană auto Cluj, asistență pană Cluj, service anvelope mobil Cluj", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Vulcanizare Mobilă Cluj | Road-Runner", description: "Serviciu rapid de reparație și schimb anvelope direct la locația ta. Ajungem în ≤30 minute.", url: "https://road-runner-cluj.com", siteName: "Road-Runner", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31692.jpg", alt: "Road-Runner Serviciu de vulcanizare mobilă"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Vulcanizare Mobilă Cluj | Road-Runner", description: "Serviciu rapid de reparație și schimb anvelope. Sună: 0744 237 237", images: ["http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31692.jpg"],
|
||||
},
|
||||
title: 'Road-Runner Vulcanizare Mobilă Cluj',
|
||||
description: 'Vulcanizare mobilă și schimb anvelope la domiciliu în Cluj-Napoca. Intervenție rapidă ≤30 min, echipament profesional, disponibil 24/7.',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="ro">
|
||||
<body className={outfit.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -50,7 +50,7 @@ export default function LandingPage() {
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "📞 Sună Acum", href: "tel:0744237237" },
|
||||
{ text: "📞 Intervenție Acum", href: "tel:0744237237" },
|
||||
{ text: "Programează Intervenția", href: "#booking" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -90,9 +90,9 @@ export default function LandingPage() {
|
||||
title="De ce să alegi Road-Runner pentru serviciile tale de anvelope"
|
||||
metrics={[
|
||||
{ icon: Clock, label: "Intervenție Rapidă", value: "≤30 min" },
|
||||
{ icon: MapPin, label: "Acoperire Cluj", value: "În orice loc" },
|
||||
{ icon: MapPin, label: "Acoperire Cluj", value: "" },
|
||||
{ icon: Star, label: "Rating Clienți", value: "4.7/5" },
|
||||
{ icon: CheckCircle, label: "Servicii Profesionale", value: "Echipament Pro" }
|
||||
{ icon: CheckCircle, label: "Servicii Profesionale", value: "" }
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user