Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8f7e1874eb | |||
| 9824d3f272 | |||
| fa31845767 | |||
| 2d8c86cd76 | |||
| 6ea1698583 | |||
| d0049e08fe | |||
| cf2d114972 | |||
| 807c298e95 | |||
| fd030cfde4 | |||
| 77c5caff82 |
@@ -1,47 +1,25 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Archivo } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const archivo = Archivo({
|
||||
variable: "--font-archivo", subsets: ["latin"],
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "BIKESERVIS - Wieczorowy Serwis Rowerowy Sosnowiec", description: "Profesjonalny serwis rowerów, hulajnóg i rowerów elektrycznych w Sosnowcu. Dostępny do 23:00. Szybkie naprawy, najlepsze ceny, doświadczeni technicy. 5.0★ (84 opinie).", keywords: "serwis rowerowy, naprawa rowerów, hulajnogi, rowery elektryczne, Sosnowiec, serwis rowerów", openGraph: {
|
||||
title: "BIKESERVIS - Wieczorowy Serwis Rowerowy", description: "Profesjonalny serwis rowerów, hulajnóg i e-rowerów w Sosnowcu do 23:00", siteName: "BIKESERVIS", type: "website"},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "BIKESERVIS - Profesjonalny Serwis Rowerowy", description: "Profesjonalny serwis rowerów, hulajnóg i rowerów elektrycznych. Otwarte do 23:00. Sosnowiec."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="pl">
|
||||
<body className={`${poppins.variable}`}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1409,7 +1387,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -47,7 +47,7 @@ export default function LandingPage() {
|
||||
tagIcon={Clock}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Zadzwoń: 693 513 190", href: "tel:693513190" },
|
||||
{ text: "Zadzwoń teraz - 693 513 190", href: "tel:693513190" },
|
||||
{ text: "Wyznacz trasę", href: "https://maps.google.com/?q=Gabriela+Narutowicza+40,+41-200+Sosnowiec" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -189,4 +189,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -12,13 +12,13 @@
|
||||
|
||||
--background: #f7f6f7;
|
||||
--card: #ffffff;
|
||||
--foreground: #250c0d;
|
||||
--primary-cta: #b82b40;
|
||||
--foreground: #25190c;
|
||||
--primary-cta: #ff6207;
|
||||
--primary-cta-text: #f7f6f7;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #250c0d;
|
||||
--accent: #b90941;
|
||||
--background-accent: #e8a8b6;
|
||||
--accent: #ffce93;
|
||||
--background-accent: #e8cfa8;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user