Merge version_2 into main #6
@@ -1,49 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } 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 publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", 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: "Serwis samochodowy Poznań | Bosch Car Service", description: "Profesjonalny serwis samochodowy w Poznaniu. Diagnostyka, naprawa hamulców, przeglądy. Zadzwoń: 695 550 188. Od 2003 roku.", keywords: "serwis samochodowy Poznań, warsztat Poznań, naprawa samochodów, diagnostyka, hamulce, przeglądy", openGraph: {
|
||||
title: "Serwis samochodowy Poznań | Bosch Car Service", description: "Profesjonalny serwis samochodowy w Poznaniu. Diagnostyka i naprawa od 2003 roku. ⭐ 4,5 (356 opinii)", url: "https://bosch-car-service.pl", siteName: "Bosch Car Service", type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Serwis samochodowy Poznań | Bosch Car Service", description: "Profesjonalny serwis samochodowy w Poznaniu. Zadzwoń: 695 550 188"},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Bosch Car Service - Profesjonalny serwis samochodowy w Poznaniu", description: "Rzetelny serwis samochodowy w Poznaniu od 2003 roku. Profesjonalna diagnostyka, naprawa hamulców, konserwacja pojazdu. Zadzwoń: 695 550 188"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="pl">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -125,7 +125,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
title="Zaufali nam zadowoleni klienci "
|
||||
title="Przekonaj się dlaczego tysiące kierowców nas wybiera"
|
||||
description="Zobacz, co mówią nasi klienci o jakości naszych usług"
|
||||
tag="Opinie"
|
||||
tagIcon={Star}
|
||||
|
||||
Reference in New Issue
Block a user