7 Commits

Author SHA1 Message Date
79f3d96585 Update src/app/page.tsx 2026-03-06 06:42:33 +00:00
1d87c2c3ef Update src/app/layout.tsx 2026-03-06 06:42:32 +00:00
84309cb6b4 Merge version_2 into main
Merge version_2 into main
2026-03-06 06:40:46 +00:00
3d46fec0e8 Update src/app/styles/variables.css 2026-03-06 06:40:41 +00:00
fb3a01bf58 Update src/app/styles/base.css 2026-03-06 06:40:41 +00:00
c534353872 Update src/app/page.tsx 2026-03-06 06:40:41 +00:00
e703d37fe8 Update src/app/layout.tsx 2026-03-06 06:40:40 +00:00
4 changed files with 16 additions and 40 deletions

View File

@@ -1,45 +1,22 @@
import type { Metadata } from "next";
import { Montserrat, Inter } from "next/font/google";
import { Inter } 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 montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
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"),
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
}
};
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="pl">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -64,13 +64,13 @@ export default function LandingPage() {
<div id="about" data-section="about">
<InlineImageSplitTextAbout
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: "text", content: "passion and precision" }
{ type: "text", content: "najwyższej jakości" }
]}
useInvertedBackground={false}
buttons={[
{ text: "Historia firmy", href: "#" }
{ text: "Dowiedz się więcej", href: "#" }
]}
buttonAnimation="slide-up"
ariaLabel="O firmie Lakierni Pro"

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-montserrat), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}

View File

@@ -12,8 +12,8 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--foreground: #000612e6;
--primary-cta: #15479c;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;