5 Commits

Author SHA1 Message Date
76cc028883 Merge version_3 into main
Merge version_3 into main
2026-04-28 15:57:51 +00:00
ec131519c3 Merge version_2 into main
Merge version_2 into main
2026-04-28 15:57:49 +00:00
9f2a776533 Update src/app/page.tsx 2026-04-28 15:57:48 +00:00
12604d0ccf Update src/app/page.tsx 2026-04-28 15:57:47 +00:00
f3fc74bc90 Merge version_1 into main
Merge version_1 into main
2026-04-28 15:56:32 +00:00

View File

@@ -63,6 +63,7 @@ export default function LandingPage() {
description="We are a boutique firm specializing in high-end brand integration and professional solutions. Our mission is to bridge the gap between creative vision and technical execution."
imageSrc="http://img.b2bpic.net/free-photo/businesspeople-having-discussion-office_107420-84844.jpg"
imageAlt="Professional office space"
buttons={[{ text: "Schedule Consultation", href: "#contact" }]}
/>
</div>
@@ -88,12 +89,12 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{ id: "p1", name: "Luxury Notebook", price: "$85.00", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-tube-product-with-gift-box-balloons-black-background_187299-46830.jpg" },
{ id: "p2", name: "Executive Pen", price: "$120.00", imageSrc: "http://img.b2bpic.net/free-photo/thimble-silk-high-angle_23-2148897940.jpg" },
{ id: "p3", name: "Leather Portfolio", price: "$250.00", imageSrc: "http://img.b2bpic.net/free-photo/model-career-kit-still-life_23-2150217992.jpg" },
{ id: "p4", name: "Corporate Briefcase", price: "$450.00", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-still-life-arrangement-with-water_23-2149176149.jpg" },
{ id: "p5", name: "Desktop Organizer", price: "$195.00", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-thimble-silk_23-2148897938.jpg" },
{ id: "p6", name: "Office Tech Set", price: "$320.00", imageSrc: "http://img.b2bpic.net/free-photo/fashion-details-accessories-elegant-woman-dressed-blue-suit_285396-7924.jpg" },
{ id: "p1", name: "Luxury Notebook", price: "$85.00", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-tube-product-with-gift-box-balloons-black-background_187299-46830.jpg", priceButtonProps: { text: "Purchase" } },
{ id: "p2", name: "Executive Pen", price: "$120.00", imageSrc: "http://img.b2bpic.net/free-photo/thimble-silk-high-angle_23-2148897940.jpg", priceButtonProps: { text: "Purchase" } },
{ id: "p3", name: "Leather Portfolio", price: "$250.00", imageSrc: "http://img.b2bpic.net/free-photo/model-career-kit-still-life_23-2150217992.jpg", priceButtonProps: { text: "Purchase" } },
{ id: "p4", name: "Corporate Briefcase", price: "$450.00", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-still-life-arrangement-with-water_23-2149176149.jpg", priceButtonProps: { text: "Inquire" } },
{ id: "p5", name: "Desktop Organizer", price: "$195.00", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-thimble-silk_23-2148897938.jpg", priceButtonProps: { text: "Purchase" } },
{ id: "p6", name: "Office Tech Set", price: "$320.00", imageSrc: "http://img.b2bpic.net/free-photo/fashion-details-accessories-elegant-woman-dressed-blue-suit_285396-7924.jpg", priceButtonProps: { text: "Inquire" } },
]}
title="Our Collection"
description="Explore our premium selection of curated brand items."
@@ -167,4 +168,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}