|
|
|
|
@@ -1,52 +1,19 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { DM_Sans } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
variable: "--font-halant", subsets: ["latin"],
|
|
|
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const dmSans = DM_Sans({
|
|
|
|
|
variable: "--font-dm-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
import type { Metadata } from 'next';
|
|
|
|
|
import './globals.css';
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Specjalistyczne uchwyty drewniane Żywiec | PPHU Wyka", description: "Sklep z uchwtami meblowymi i elementami drewnianymi w Żywcu. Duży wybór, indywidualne zamówienia, szybki kontakt. Google 5.0★.", keywords: "uchwyty meblowe Żywiec, uchwyty drewniane, elementy drewniane, hardware sklep, meblarskie komponenty", robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Specjalistyczne uchwyty drewniane Żywiec | PPHU Wyka", description: "Sklep z uchwtami meblowymi i elementami drewnianymi. Duży wybór, indywidualne zamówienia.", type: "website", siteName: "PPHU Wyka", images: [{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/close-up-self-tapping-screw-wood-screw-carpenter-s-craft_169016-12783.jpg", alt: "Drewniane uchwyty meblowe"}],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Specjalistyczne uchwyty drewniane Żywiec", description: "Wysokiej jakości uchwyty i elementy drewniane dla meblarzy i stolarzy", images: ["http://img.b2bpic.net/free-photo/close-up-self-tapping-screw-wood-screw-carpenter-s-craft_169016-12783.jpg"],
|
|
|
|
|
},
|
|
|
|
|
title: 'KMW. PPHU Wyka - Specjalistyczne uchwyty i elementy drewniane',
|
|
|
|
|
description: 'Szeroki wybór uchwytów meblowych i komponentów drewnianych w Żywcu. Naturalne drewno, lakierowane powierzchnie i zamówienia specjalne na wycenę.',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="pl">
|
|
|
|
|
<body>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1414,7 +1381,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|