Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #5.
This commit is contained in:
2026-06-02 13:35:06 +00:00

View File

@@ -17,11 +17,11 @@ import { Flame, Palette, ShieldCheck, Smartphone, Sparkles } from "lucide-react"
export default function LandingPage() { export default function LandingPage() {
const navItems = [ const navItems = [
{ {
name: "Home", id: "/"}, name: "Home", id: "#home"},
{ {
name: "About", id: "/about"}, name: "About", id: "#about"},
{ {
name: "Features", id: "/feature"}, name: "Features", id: "#features"},
{ {
name: "Products", id: "/#products"}, name: "Products", id: "/#products"},
{ {
@@ -36,7 +36,7 @@ export default function LandingPage() {
{ {
title: "Products", items: [ title: "Products", items: [
{ {
label: "Latest Collection", href: "/#products"}, label: "Latest Collection", href: "#products"},
{ {
label: "Limited Editions", href: "#"}, label: "Limited Editions", href: "#"},
{ {
@@ -46,19 +46,19 @@ export default function LandingPage() {
{ {
title: "About Us", items: [ title: "About Us", items: [
{ {
label: "Our Story", href: "/about"}, label: "Our Story", href: "#about"},
{ {
label: "Craftsmanship", href: "/about"}, label: "Craftsmanship", href: "#about"},
{ {
label: "Testimonials", href: "/#testimonials"}, label: "Testimonials", href: "#testimonials"},
], ],
}, },
{ {
title: "Support", items: [ title: "Support", items: [
{ {
label: "FAQ", href: "/#faq"}, label: "FAQ", href: "#faq"},
{ {
label: "Contact Us", href: "/#contact"}, label: "Contact Us", href: "#contact"},
{ {
label: "Shipping & Returns", href: "#"}, label: "Shipping & Returns", href: "#"},
], ],