Merge version_2 into main #4

Merged
bender merged 4 commits from version_2 into main 2026-03-06 06:40:46 +00:00
4 changed files with 24 additions and 47 deletions

View File

@@ -1,45 +1,23 @@
import type { Metadata } from "next";
import { Montserrat, Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
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 i Powłoki 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={`${interTight.variable}`}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -14,16 +14,16 @@ import { Sparkles, CheckCircle, Star, TrendingUp, Facebook, Linkedin, Mail } fro
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="smallMedium"
sizing="largeSmallSizeLargeTitles"
background="circleGradient"
cardStyle="layered-gradient"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="layered"
headingFontWeight="bold"
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="mediumLargeSizeLargeTitles"
background="none"
cardStyle="solid"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
@@ -44,7 +44,7 @@ export default function LandingPage() {
tag="Lakierni Pro"
tagIcon={Sparkles}
tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
background={{ variant: "plain" }}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-s-hand-pouring-milk-cup-table_23-2147936185.jpg?_wi=1", imageAlt: "Profesjonalny lakier do drewna" },
{ imageSrc: "http://img.b2bpic.net/free-photo/mid-adult-engineer-two-steel-workers-going-through-quality-reports-while-working-industrial-building_637285-4094.jpg", imageAlt: "Nowoczesna fabryka lakierów" },

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;