Merge version_1 into main #1

Merged
development merged 4 commits from version_1 into main 2026-02-06 12:47:58 +00:00
Showing only changes of commit 4218a576ab - Show all commits

View File

@@ -29,13 +29,13 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
brandName="Alisa" brandName="Alisa"
navItems={[ navItems={[
{ name: "Shop", id: "products" }, { name: "Shop", id: "/shop" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ button={{
text: "Order Now", href: "products" text: "Order Now", href: "/shop"
}} }}
/> />
</div> </div>
@@ -52,7 +52,7 @@ export default function LandingPage() {
showBlur={true} showBlur={true}
showDimOverlay={false} showDimOverlay={false}
buttons={[ buttons={[
{ text: "Shop Flowers", href: "products" }, { text: "Shop Flowers", href: "/shop" },
{ text: "Learn More", href: "about" } { text: "Learn More", href: "about" }
]} ]}
/> />
@@ -211,7 +211,7 @@ export default function LandingPage() {
columns={[ columns={[
{ {
items: [ items: [
{ label: "Shop Flowers", href: "products" }, { label: "Shop Flowers", href: "/shop" },
{ label: "About Us", href: "about" }, { label: "About Us", href: "about" },
{ label: "Testimonials", href: "testimonials" } { label: "Testimonials", href: "testimonials" }
] ]