diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 0ca7cdd..9249bc7 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -13,25 +13,10 @@ export default function AboutPage() {
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
- { name: "Reviews", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
+ { name: "FAQ", id: "faq" },
];
- const handleNavClick = (id: string) => {
- if (id === "/") {
- window.location.href = "/";
- } else if (id.startsWith("/")) {
- window.location.href = id;
- } else if (id.startsWith("http")) {
- window.open(id, "_blank");
- } else {
- const element = document.getElementById(id);
- if (element) {
- element.scrollIntoView({ behavior: "smooth" });
- }
- }
- };
-
return (
@@ -88,7 +76,8 @@ export default function AboutPage() {