Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6ea1698583 | |||
| d0049e08fe | |||
| cf2d114972 | |||
| 807c298e95 | |||
| fd030cfde4 | |||
| 77c5caff82 |
@@ -1,47 +1,25 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Archivo } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import "./styles/variables.css";
|
||||||
import Tag from "@/tag/Tag";
|
import "./styles/base.css";
|
||||||
|
|
||||||
const halant = Halant({
|
const poppins = Poppins({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-poppins", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const archivo = Archivo({
|
|
||||||
variable: "--font-archivo", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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 - Profesjonalny Serwis Rowerowy", description: "Profesjonalny serwis rowerów, hulajnóg i rowerów elektrycznych. Otwarte do 23:00. Sosnowiec."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${poppins.variable}`}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1409,7 +1387,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,13 +12,13 @@
|
|||||||
|
|
||||||
--background: #f7f6f7;
|
--background: #f7f6f7;
|
||||||
--card: #ffffff;
|
--card: #ffffff;
|
||||||
--foreground: #250c0d;
|
--foreground: #25190c;
|
||||||
--primary-cta: #b82b40;
|
--primary-cta: #ff6207;
|
||||||
--primary-cta-text: #f7f6f7;
|
--primary-cta-text: #f7f6f7;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #ffffff;
|
||||||
--secondary-cta-text: #250c0d;
|
--secondary-cta-text: #250c0d;
|
||||||
--accent: #b90941;
|
--accent: #ffce93;
|
||||||
--background-accent: #e8a8b6;
|
--background-accent: #e8cfa8;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user