Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dcf3f9844e | |||
| 9b8ec39c1f | |||
| cf2a0aeaf0 | |||
| ebe5e5cf31 | |||
| f0174fb0b3 |
@@ -1,50 +1,24 @@
|
||||
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 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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1386,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@ export default function LandingPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Padaryk"
|
||||
brandName="Padaryk Evaldo Baldam"
|
||||
navItems={[
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
@@ -39,8 +39,8 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboardSplit
|
||||
logoText="PADARYK"
|
||||
description="Discover exquisite handcrafted furniture that transforms your living space. Premium materials, timeless design, and uncompromising quality."
|
||||
logoText="PADARYK EVALDO BALDAM TEN BALDU KOMPANIJA"
|
||||
description="Discover exquisite handcrafted furniture that transforms your living space. Premium materials, timeless design, and uncompromising quality. Crafting exceptional pieces for over two decades."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Shop Collection", href: "#products" },
|
||||
@@ -58,7 +58,7 @@ export default function LandingPage() {
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
title="Featured Collection"
|
||||
description="Explore our handpicked selection of premium furniture pieces"
|
||||
description="Explore our handpicked selection of premium furniture pieces, each crafted with precision and care"
|
||||
tag="New Arrivals"
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -67,22 +67,25 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Elegant Leather Sofa", price: "2,499€", imageSrc: "http://img.b2bpic.net/free-photo/modern-sofa-living-room_1339-4060.jpg", imageAlt: "Elegant leather sofa"
|
||||
id: "1", name: "Elegant Leather Sofa", price: "€2,499", imageSrc: "http://img.b2bpic.net/free-photo/modern-sofa-living-room_1339-4060.jpg", imageAlt: "Elegant leather sofa"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Classic Wooden Chair", price: "899€", imageSrc: "http://img.b2bpic.net/free-photo/interior-design-house-modern-wooden-table-chair_657883-324.jpg", imageAlt: "Classic wooden chair"
|
||||
id: "2", name: "Classic Wooden Chair", price: "€899", imageSrc: "http://img.b2bpic.net/free-photo/interior-design-house-modern-wooden-table-chair_657883-324.jpg", imageAlt: "Classic wooden chair"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Premium Coffee Table", price: "1,299€", imageSrc: "http://img.b2bpic.net/free-photo/white-coffee-cup-with-flower-vase-table-decoration-with-pillow-sofa_74190-907.jpg", imageAlt: "Premium coffee table"
|
||||
id: "3", name: "Premium Coffee Table", price: "€1,299", imageSrc: "http://img.b2bpic.net/free-photo/white-coffee-cup-with-flower-vase-table-decoration-with-pillow-sofa_74190-907.jpg", imageAlt: "Premium coffee table"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "View All Products", href: "#products" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
title="About Padaryk"
|
||||
description="For over two decades, Padaryk has been crafting exceptional furniture that combines traditional craftsmanship with contemporary design. Every piece tells a story of dedication and excellence."
|
||||
title="About Padaryk Evaldo Baldam Ten Baldu Kompanija"
|
||||
description="For over two decades, we have been crafting exceptional furniture that combines traditional craftsmanship with contemporary design. Every piece tells a story of dedication and excellence."
|
||||
tag="Our Legacy"
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -93,17 +96,17 @@ export default function LandingPage() {
|
||||
imageAlt="Padaryk furniture workshop"
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Master Craftsmanship", description: "Each piece is handcrafted by skilled artisans using traditional techniques"
|
||||
title: "Master Craftsmanship", description: "Each piece is handcrafted by skilled artisans using traditional techniques refined over generations"
|
||||
},
|
||||
{
|
||||
title: "Premium Materials", description: "We source only the finest woods and upholstery fabrics from around the world"
|
||||
title: "Premium Materials", description: "We source only the finest woods and upholstery fabrics from sustainable suppliers around the world"
|
||||
},
|
||||
{
|
||||
title: "Sustainable Practices", description: "Our commitment to environmental responsibility guides every decision"
|
||||
title: "Sustainable Practices", description: "Our commitment to environmental responsibility guides every decision, from sourcing to packaging"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "View Our Story", href: "#" }
|
||||
{ text: "View Our Story", href: "#about" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -112,7 +115,7 @@ export default function LandingPage() {
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentySeven
|
||||
title="Why Choose Padaryk"
|
||||
description="Discover the distinctive qualities that set our furniture apart"
|
||||
description="Discover the distinctive qualities that set our furniture apart and make it the perfect choice for your home"
|
||||
tag="Features"
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -124,7 +127,7 @@ export default function LandingPage() {
|
||||
id: "1", title: "Timeless Design", description: "Our designs transcend trends, creating timeless pieces that enhance any interior for years to come"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Bespoke Customization", description: "Personalize your furniture with custom colors, fabrics, and dimensions to match your vision"
|
||||
id: "2", title: "Bespoke Customization", description: "Personalize your furniture with custom colors, fabrics, and dimensions to match your unique vision"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Lifetime Support", description: "We stand behind our craftsmanship with comprehensive warranties and dedicated customer care"
|
||||
@@ -171,7 +174,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
tag="Newsletter"
|
||||
title="Stay Updated With Our Latest Collections"
|
||||
description="Subscribe to receive exclusive previews of new designs, special offers, and interior inspiration."
|
||||
description="Subscribe to receive exclusive previews of new designs, special offers, and interior inspiration delivered directly to your inbox."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={true}
|
||||
tagAnimation="slide-up"
|
||||
@@ -188,22 +191,22 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Product", items: [
|
||||
{ label: "Collections", href: "#products" },
|
||||
{ label: "Custom Orders", href: "#" },
|
||||
{ label: "Materials Guide", href: "#" }
|
||||
{ label: "Custom Orders", href: "#contact" },
|
||||
{ label: "Materials Guide", href: "#about" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Our Story", href: "#" },
|
||||
{ label: "Sustainability", href: "#" }
|
||||
{ label: "Our Story", href: "#about" },
|
||||
{ label: "Sustainability", href: "#features" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "FAQ", href: "#" },
|
||||
{ label: "Warranty", href: "#" }
|
||||
{ label: "FAQ", href: "#features" },
|
||||
{ label: "Warranty", href: "#about" }
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -214,7 +217,7 @@ export default function LandingPage() {
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Padaryk. All rights reserved. Handcrafted with care."
|
||||
copyrightText="© 2025 Padaryk Evaldo Baldam Ten Baldu Kompanija. All rights reserved. Handcrafted with care."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user