diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx
index 5c724d6..af647a1 100644
--- a/src/app/product/[id]/page.tsx
+++ b/src/app/product/[id]/page.tsx
@@ -4,11 +4,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne";
-import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
-import Link from "next/link";
-export default function ProductDetailsPage() {
+export default function ProductDetailPage() {
const navItems = [
{ name: "Browse", id: "browse" },
{ name: "Categories", id: "categories" },
@@ -19,8 +17,7 @@ export default function ProductDetailsPage() {
const footerColumns = [
{
- title: "Product",
- items: [
+ title: "Product", items: [
{ label: "Browse All", href: "/browse" },
{ label: "Categories", href: "/browse" },
{ label: "Trending", href: "/browse" },
@@ -28,8 +25,7 @@ export default function ProductDetailsPage() {
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "How It Works", href: "/about" },
{ label: "Blog", href: "#" },
@@ -37,8 +33,7 @@ export default function ProductDetailsPage() {
],
},
{
- title: "Support",
- items: [
+ title: "Support", items: [
{ label: "Help Center", href: "#" },
{ label: "Contact Us", href: "#contact" },
{ label: "FAQ", href: "#" },
@@ -46,8 +41,7 @@ export default function ProductDetailsPage() {
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
@@ -73,130 +67,54 @@ export default function ProductDetailsPage() {