diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index f162d33..4ea0cec 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -12,10 +12,10 @@ import { Award, Lightbulb, Leaf, Heart, TrendingUp } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "/" },
- { name: "Products", id: "/products" },
- { name: "About", id: "/about" },
- { name: "Testimonials", id: "/testimonials" },
- { name: "Contact", id: "/contact" },
+ { name: "About", id: "#about" },
+ { name: "Features", id: "#features" },
+ { name: "Testimonials", id: "#testimonials" },
+ { name: "Contact", id: "#contact" },
];
return (
@@ -33,55 +33,45 @@ export default function AboutPage() {
>
({
name: item.name,
id: item.id,
}))}
button={{
- text: "Shop Now",
- href: "/shop",
- }}
+ text: "Order Now", href: "#contact"}}
/>
@@ -91,54 +81,26 @@ export default function AboutPage() {
{/* Hero Section */}
@@ -76,29 +84,29 @@ export default function HomePage() {
{/* About Section */}
@@ -106,9 +114,9 @@ export default function HomePage() {
{/* Features Section */}
@@ -138,7 +154,7 @@ export default function HomePage() {
{/* Metrics Section */}
@@ -163,7 +183,7 @@ export default function HomePage() {
@@ -197,24 +223,30 @@ export default function HomePage() {
@@ -222,38 +254,38 @@ export default function HomePage() {
{/* Footer */}
);
-}
+}
\ No newline at end of file
diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
index 9e0cc77..bf02090 100644
--- a/src/app/products/page.tsx
+++ b/src/app/products/page.tsx
@@ -10,8 +10,8 @@ import { Sparkles, Phone } from "lucide-react";
const navItems = [
{ name: "Home", id: "/" },
- { name: "Products", id: "/products" },
{ name: "About", id: "#about" },
+ { name: "Features", id: "#features" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "Contact", id: "#contact" },
];
@@ -33,21 +33,19 @@ export default function ProductsPage() {
{/* Navbar */}
{/* Products Section */}
@@ -82,31 +65,20 @@ export default function ProductsPage() {
{/* Contact & FAQ Section */}
@@ -114,36 +86,33 @@ export default function ProductsPage() {
{/* Footer */}