diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index cffad8e..dd290f0 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index efe684f..bf77344 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -14,16 +14,16 @@ import { Sparkles, CheckCircle, Star, TrendingUp, Facebook, Linkedin, Mail } fro
export default function LandingPage() {
return (