Merge version_2 into main #3

Merged
bender merged 4 commits from version_2 into main 2026-04-23 22:03:06 +00:00
4 changed files with 7 additions and 3 deletions

View File

@@ -30,6 +30,7 @@ export default function AboutPage() {
{ name: "Contact", id: "/contact" },
]}
brandName="Luxuria"
button={{ text: "Get Started", href: "#" }}
/>
<TextSplitAbout
className="py-32"

View File

@@ -16,6 +16,7 @@ export default function CartPage() {
{ name: "Cart", id: "/cart" },
]}
brandName="E-Shop"
button={{ text: "Checkout", href: "/cart" }}
/>
<ContactSplitForm
title="Checkout"

View File

@@ -30,6 +30,7 @@ export default function FaqPage() {
{ name: "Contact", id: "/contact" },
]}
brandName="Luxuria"
button={{ text: "Get Started", href: "#" }}
/>
<FaqDouble
title="Frequently Asked Questions"

View File

@@ -16,6 +16,7 @@ export default function ShopPage() {
{ name: "Cart", id: "/cart" },
]}
brandName="E-Shop"
button={{ text: "Cart", href: "/cart" }}
/>
<ProductCardFour
title="Our Collection"
@@ -25,9 +26,9 @@ export default function ShopPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{ id: "1", name: "Product One", price: "$99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/destination/destination1.webp" },
{ id: "2", name: "Product Two", price: "$149", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/destination/destination2.webp" },
{ id: "3", name: "Product Three", price: "$199", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/destination/destination3.webp" }
{ id: "1", name: "Product One", price: "$99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/destination/destination1.webp", variant: "default" },
{ id: "2", name: "Product Two", price: "$149", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/destination/destination2.webp", variant: "default" },
{ id: "3", name: "Product Three", price: "$199", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/destination/destination3.webp", variant: "default" }
]}
/>
<FooterCard