Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7693d99170 | |||
| 47a8313140 | |||
| 4e2a37dd39 | |||
| 29369f625c | |||
| 670c9655fa |
@@ -1,52 +1,19 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Halant } from "next/font/google";
|
import './globals.css';
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
title: 'KMW. PPHU Wyka - Specjalistyczne uchwyty i elementy drewniane',
|
||||||
index: true,
|
description: 'Szeroki wybór uchwytów meblowych i komponentów drewnianych w Żywcu. Naturalne drewno, lakierowane powierzchnie i zamówienia specjalne na wycenę.',
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
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>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1414,7 +1381,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -68,6 +68,10 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
buttons={[
|
||||||
|
{ text: "Zapytaj o dostępność", href: "#contact" }
|
||||||
|
]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "rating", value: "5.0", title: "Ocena na Google", items: ["Szybki kontakt", "Fachowa porada", "Indywidualne zamówienia"]
|
id: "rating", value: "5.0", title: "Ocena na Google", items: ["Szybki kontakt", "Fachowa porada", "Indywidualne zamówienia"]
|
||||||
|
|||||||
Reference in New Issue
Block a user