5 Commits

Author SHA1 Message Date
75d26485b6 Update src/app/page.tsx 2026-03-05 23:54:28 +00:00
bd5bccdfe9 Update src/app/layout.tsx 2026-03-05 23:54:28 +00:00
803c3cb6ac Merge version_1 into main
Merge version_1 into main
2026-03-05 23:53:19 +00:00
ca0caeb368 Merge version_1 into main
Merge version_1 into main
2026-03-05 23:52:34 +00:00
3afd244034 Merge version_1 into main
Merge version_1 into main
2026-03-05 23:51:23 +00:00
2 changed files with 13 additions and 39 deletions

View File

@@ -1,52 +1,27 @@
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={{
@@ -1415,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -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" }