Merge version_2 into main #4
@@ -1,53 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Studio Fryzjerskie Klonowa 20 | Fryzjer Piekoszów", description: "Profesjonalny salon fryzjerski w Piekoszowie. Koloryzacja, balejaż, strzyżenie i zabiegi pielęgnacyjne. Ocena 5.0 od 17 klientów. Umów wizytę online lub zadzwoń 574 625 257.", keywords: "fryzjer Piekoszów, salon fryzjerski, koloryzacja włosów, balejaż, strzyżenie, zabiegi keratynowe", metadataBase: new URL("https://studiofryjerskie.pl"),
|
||||
alternates: {
|
||||
canonical: "https://studiofryjerskie.pl"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Studio Fryzjerskie Klonowa 20 | Fryzjer Piekoszów", description: "Profesjonalny salon fryzjerski z oceną 5.0. Zabiegi koloryzacji, baleażu, keratyny i strzyżenia dla całej rodziny.", url: "https://studiofryjerskie.pl", siteName: "Studio Fryzjerskie Klonowa 20", type: "website", images: [
|
||||
{
|
||||
url: "https://studiofryjerskie.pl/og-image.jpg", alt: "Studio Fryzjerskie Klonowa 20"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Studio Fryzjerskie Klonowa 20 | Fryzjer Piekoszów", description: "Profesjonalny salon fryzjerski z oceną 5.0 od 17 klientów.", images: ["https://studiofryjerskie.pl/og-image.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -147,7 +147,7 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
tag="Rezerwacja Wizyty"
|
||||
title="Gotowe na Nową Fryzurę?"
|
||||
description="Umów wizytę dzisiaj! Skontaktuj się z nami telefonicznie lub wypełnij formularz. Odpowiemy w ciągu 24 godzin."
|
||||
description="⏰ Zarezerwuj wizytę dzisiaj! Skontaktuj się telefonicznie lub mailowo. Odpowiemy w ciągu 1 godziny."
|
||||
buttons={[
|
||||
{ text: "Zadzwoń: 574 625 257", href: "tel:574625257" },
|
||||
{ text: "Wyślij Wiadomość", href: "mailto:kontakt@studiofryjerskie.pl" }
|
||||
|
||||
Reference in New Issue
Block a user