diff --git a/src/app/sell/page.tsx b/src/app/sell/page.tsx
index 54197d2..8f42a95 100644
--- a/src/app/sell/page.tsx
+++ b/src/app/sell/page.tsx
@@ -1,36 +1,34 @@
"use client";
+import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
-import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import FooterBase from "@/components/sections/footer/FooterBase";
-import Link from "next/link";
-import { CheckCircle, Zap, HelpCircle } from "lucide-react";
+import { Sparkles, CheckCircle, HelpCircle } from "lucide-react";
-export default function SellPage() {
+export default function SellYourWatchPage() {
const navItems = [
- { name: "Home", id: "home" },
- { name: "Shop", id: "shop" },
- { name: "Sell Your Watch", id: "sell" },
- { name: "Collections", id: "collections" },
- { name: "About", id: "about" },
+ { name: "Home", id: "/" },
+ { name: "Shop", id: "/shop" },
+ { name: "Sell Your Watch", id: "/sell" },
+ { name: "Collections", id: "/collections" },
+ { name: "About", id: "/about" },
];
const footerColumns = [
{
- title: "Explore",
- items: [
+ title: "Explore", items: [
{ label: "Shop Watches", href: "/shop" },
{ label: "Sell Your Watch", href: "/sell" },
- { label: "3D Gallery", href: "/shop" },
+ { label: "3D Gallery", href: "#gallery" },
{ label: "Collections", href: "/shop" },
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Story", href: "/about" },
{ label: "Blog", href: "#" },
@@ -38,8 +36,7 @@ export default function SellPage() {
],
},
{
- title: "Support",
- items: [
+ title: "Support", items: [
{ label: "Help Center", href: "#" },
{ label: "Contact Us", href: "#" },
{ label: "Valuation Guide", href: "#" },
@@ -47,8 +44,7 @@ export default function SellPage() {
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Return Policy", href: "#" },
@@ -74,16 +70,46 @@ export default function SellPage() {