diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index f56533a..89ac85c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,50 +1,22 @@
import type { Metadata } from "next";
-import { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({
- variable: "--font-libre-baskerville", subsets: ["latin"],
- weight: ["400", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Padaryk - Premium Handcrafted Furniture | Evaldo Baldam", description: "Discover exquisite handcrafted furniture by Padaryk. Premium materials, timeless design, and uncompromising quality for your home.", keywords: "furniture, handcrafted, premium, design, sofa, chairs, tables, interior design", openGraph: {
- title: "Padaryk - Premium Handcrafted Furniture", description: "Exquisite furniture that transforms your living space with timeless design and superior craftsmanship.", type: "website", siteName: "Padaryk", images: [
- {
- url: "http://img.b2bpic.net/free-photo/modern-interior-design-living-room-with-soft-sofa-background-wooden-wall-minim_1258-134116.jpg", alt: "Padaryk Premium Furniture Collection"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Padaryk - Premium Handcrafted Furniture", description: "Discover timeless furniture designs by Padaryk", images: ["http://img.b2bpic.net/free-photo/modern-interior-design-living-room-with-soft-sofa-background-wooden-wall-minim_1258-134116.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Padaryk Evaldo Baldam Ten Baldu Kompanija - Premium Handcrafted Furniture", description: "Discover exquisite handcrafted furniture that transforms your living space. Premium materials, timeless design, and uncompromising quality."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-