diff --git a/src/app/product-variations/page.tsx b/src/app/product-variations/page.tsx index ac88a40..c44faa2 100644 --- a/src/app/product-variations/page.tsx +++ b/src/app/product-variations/page.tsx @@ -12,7 +12,7 @@ export default function ProductVariationsPage() { { name: "Fiyatlandırma", id: "pricing" }, { name: "Hakkımızda", id: "about" }, { name: "İletişim", id: "contact" }, - { name: "Varyasyonlar", href: "/product-variations" } + { name: "Varyasyonlar", id: "/product-variations" } ]; return ( diff --git a/src/app/production/page.tsx b/src/app/production/page.tsx index 5f67305..31f82b7 100644 --- a/src/app/production/page.tsx +++ b/src/app/production/page.tsx @@ -9,8 +9,8 @@ import { Wrench, BookOpen, Factory, ShoppingCart, Clock, DollarSign, ListChecks, export default function ProductionPage() { const navItems = [ { name: "Özellikler", id: "features" }, - { name: "Üretim", href: "/production" }, - { name: "Reçeteler", href: "/recipes" }, + { name: "Üretim", id: "/production" }, + { name: "Reçeteler", id: "/recipes" }, { name: "Fiyatlandırma", id: "pricing" }, { name: "Hakkımızda", id: "about" }, { name: "İletişim", id: "contact" } diff --git a/src/app/recipes/page.tsx b/src/app/recipes/page.tsx index bc97572..f4c3cff 100644 --- a/src/app/recipes/page.tsx +++ b/src/app/recipes/page.tsx @@ -9,8 +9,8 @@ import { FlaskConical, ListChecks, Database, DollarSign, Clock, Wrench, BookOpen export default function RecipesPage() { const navItems = [ { name: "Özellikler", id: "features" }, - { name: "Üretim", href: "/production" }, - { name: "Reçeteler", href: "/recipes" }, + { name: "Üretim", id: "/production" }, + { name: "Reçeteler", id: "/recipes" }, { name: "Fiyatlandırma", id: "pricing" }, { name: "Hakkımızda", id: "about" }, { name: "İletişim", id: "contact" }