Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 75d26485b6 | |||
| bd5bccdfe9 | |||
| 803c3cb6ac | |||
| ca0caeb368 | |||
| 3afd244034 |
@@ -1,53 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const geist = Geist({
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -147,7 +147,7 @@ export default function LandingPage() {
|
|||||||
<ContactCTA
|
<ContactCTA
|
||||||
tag="Rezerwacja Wizyty"
|
tag="Rezerwacja Wizyty"
|
||||||
title="Gotowe na Nową Fryzurę?"
|
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={[
|
buttons={[
|
||||||
{ text: "Zadzwoń: 574 625 257", href: "tel:574625257" },
|
{ text: "Zadzwoń: 574 625 257", href: "tel:574625257" },
|
||||||
{ text: "Wyślij Wiadomość", href: "mailto:kontakt@studiofryjerskie.pl" }
|
{ text: "Wyślij Wiadomość", href: "mailto:kontakt@studiofryjerskie.pl" }
|
||||||
|
|||||||
Reference in New Issue
Block a user