3 Commits

Author SHA1 Message Date
18f4282421 Update src/app/page.tsx 2026-03-09 22:05:53 +00:00
fe254637d6 Update src/app/layout.tsx 2026-03-09 22:05:52 +00:00
59f8966b53 Merge version_1 into main
Merge version_1 into main
2026-03-09 22:04:12 +00:00
2 changed files with 7 additions and 42 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Public_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "RONAR Profesjonalny Serwis Rowerowy we Wrocławiu", description: "Serwis rowerowy RONAR we Wrocławiu. Naprawa, przeglądy i regulacje rowerów. Doświadczeni mechanicy, profesjonalne narzędzia. Ocena 4.8★", keywords: "serwis rowerowy Wrocław, naprawa rowerów, przegląd rowerów, regulacja hamulców, serwis MTB", openGraph: { title: "RONAR - Profesjonalny Serwis Rowerowy we Wrocławiu", description: "Szybka naprawa, dokładny przegląd i fachowa regulacja Twojego roweru. Serwis rowerowy RONAR we Wrocławiu."};
title: "RONAR Serwis Rowerowy we Wrocławiu", description: "Profesjonalny serwis rowerowy z doświadczonym zespołem mechanikami. Szybkie naprawy i konserwacja.", siteName: "RONAR", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/smiling-mechanic-workshop_1170-2979.jpg", alt: "RONAR Serwis Rowerowy"},
],
},
twitter: {
card: "summary_large_image", title: "RONAR Serwis Rowerowy", description: "Profesjonalny serwis rowerowy we Wrocławiu. Naprawa i przeglądy rowerów.", images: ["http://img.b2bpic.net/free-photo/smiling-mechanic-workshop_1170-2979.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="pl">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -59,7 +59,7 @@ export default function LandingPage() {
{ {
text: "Umów serwis", href: "#contact"}, text: "Umów serwis", href: "#contact"},
{ {
text: "Zobacz usługi", href: "#services"}, text: "Zarezerwuj bezpłatną konsultację", href: "#contact"},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
mediaAnimation="slide-up" mediaAnimation="slide-up"