5 Commits

Author SHA1 Message Date
ab199e5731 Update src/app/page.tsx 2026-03-04 00:55:58 +00:00
74bb48c7c8 Update src/app/layout.tsx 2026-03-04 00:55:58 +00:00
6433085e51 Merge version_1 into main
Merge version_1 into main
2026-03-04 00:55:05 +00:00
401d1be390 Merge version_1 into main
Merge version_1 into main
2026-03-04 00:54:15 +00:00
ae819760b8 Merge version_1 into main
Merge version_1 into main
2026-03-04 00:53:11 +00:00
2 changed files with 16 additions and 39 deletions

View File

@@ -1,48 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Pasha Hand Crafted Rugs - Authentic Handwoven Rugs in Chico, CA", description: "Discover hand-crafted rugs from master artisans. Premium handwoven rugs in traditional and modern styles. Visit our Chico showroom today.", keywords: "handwoven rugs, handcrafted carpets, traditional rugs, Persian rugs, Kilim, artisan rugs, Chico California", openGraph: { title: "Pasha Hand Crafted Rugs", description: "Discover authentic, handwoven rugs from Pasha. Each piece is meticulously crafted by master artisans."};
title: "Pasha Hand Crafted Rugs", description: "Authentic handwoven rugs with timeless beauty and traditional craftsmanship", siteName: "Pasha Hand Crafted Rugs", type: "website", images: [{
url: "http://img.b2bpic.net/free-photo/multiple-carpets-grand-bazaar-istanbul-turkey_1268-21686.jpg", alt: "Pasha Hand Crafted Rugs"
}]
},
twitter: {
card: "summary_large_image", title: "Pasha Hand Crafted Rugs", description: "Authentic handwoven rugs with timeless beauty", images: ["http://img.b2bpic.net/free-photo/multiple-carpets-grand-bazaar-istanbul-turkey_1268-21686.jpg"]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1410,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -9,7 +9,7 @@ import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import { Sparkles, Heart, Award, Instagram, Facebook, Mail } from "lucide-react"; import { Sparkles, Heart, Award, Instagram, Facebook, Mail, ShoppingCart, Eye } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -84,13 +84,19 @@ export default function LandingPage() {
tagIcon={Award} tagIcon={Award}
products={[ products={[
{ {
id: "1", name: "Persian Traditional Rug - 8x10", price: "$1,850", imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-female-shows-her-sexy-body-near-golden-lizard-rich-interior_613910-7600.jpg?_wi=1", imageAlt: "Persian traditional rug with intricate patterns" id: "1", name: "Persian Traditional Rug - 8x10", price: "$1,850", imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-female-shows-her-sexy-body-near-golden-lizard-rich-interior_613910-7600.jpg?_wi=1", imageAlt: "Persian traditional rug with intricate patterns", priceButtonProps: {
text: "Add to Cart"
}
}, },
{ {
id: "2", name: "Kilim Geometric Carpet - 6x9", price: "$1,200", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-traditional-native-american-pattern_23-2149191786.jpg?_wi=1", imageAlt: "Kilim rug with bold geometric patterns" id: "2", name: "Kilim Geometric Carpet - 6x9", price: "$1,200", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-traditional-native-american-pattern_23-2149191786.jpg?_wi=1", imageAlt: "Kilim rug with bold geometric patterns", priceButtonProps: {
text: "Add to Cart"
}
}, },
{ {
id: "3", name: "Modern Minimalist Rug - 5x8", price: "$950", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cozy-texture-clothing_23-2149432496.jpg", imageAlt: "Contemporary minimalist handwoven rug" id: "3", name: "Modern Minimalist Rug - 5x8", price: "$950", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cozy-texture-clothing_23-2149432496.jpg", imageAlt: "Contemporary minimalist handwoven rug", priceButtonProps: {
text: "Add to Cart"
}
} }
]} ]}
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"