Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a924e03441 | |||
| f9efc0a497 |
@@ -1,45 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat, Inter } from "next/font/google";
|
import { Inter } 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 montserrat = Montserrat({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Lakierni Pro - Profesjonalne Lakiery do Drewna | Polska", description: "Najwyższej jakości lakiery i powłoki do drewna. Zaufana marka od 25 lat. Lakiery ekologiczne, polyurethane i specjalne powłoki dla profesjonalistów.", keywords: "lakiery, lakiery do drewna, lakiery ekologiczne, powłoki, drewno, polska, profesjonalne", metadataBase: new URL("https://lakiernipro.pl"),
|
title: "Lakierni Pro - Profesjonalne Lakiery do Drewna", description: "Najwyższa jakość lakierów i powłok do drewna. Polska marka zaufana od ponad 20 lat w branży."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://lakiernipro.pl"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Lakierni Pro - Profesjonalne Lakiery do Drewna", description: "Najwyższej jakości lakiery i powłoki do drewna. Zaufana marka od 25 lat w Polsce.", url: "https://lakiernipro.pl", siteName: "Lakierni Pro", 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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1407,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,13 +64,13 @@ export default function LandingPage() {
|
|||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<InlineImageSplitTextAbout
|
<InlineImageSplitTextAbout
|
||||||
heading={[
|
heading={[
|
||||||
{ type: "text", content: "Quality crafted with" },
|
{ type: "text", content: "Minimalistyczne podejście do" },
|
||||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/mid-adult-worker-operating-cnc-machine-while-working-industrial-facility_637285-4166.jpg", alt: "O nas - Nowoczesna fabryka" },
|
{ type: "image", src: "http://img.b2bpic.net/free-photo/mid-adult-worker-operating-cnc-machine-while-working-industrial-facility_637285-4166.jpg", alt: "O nas - Nowoczesna fabryka" },
|
||||||
{ type: "text", content: "passion and precision" }
|
{ type: "text", content: "najwyższej jakości" }
|
||||||
]}
|
]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Historia firmy", href: "#" }
|
{ text: "Dowiedz się więcej", href: "#" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
ariaLabel="O firmie Lakierni Pro"
|
ariaLabel="O firmie Lakierni Pro"
|
||||||
|
|||||||
Reference in New Issue
Block a user