diff --git a/src/app/page.tsx b/src/app/page.tsx
index 0073d13..2ed1c12 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -10,12 +10,14 @@ import TestimonialCardFifteen from "@/components/sections/testimonial/Testimonia
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import ContactCenter from "@/components/sections/contact/ContactCenter";
-import { Zap, Layers, Package, TrendingUp, ShieldCheck, HelpCircle, DollarSign, Building, Clock, ShoppingCart, Warehouse, BarChart3 } from "lucide-react";
+import { Zap, Layers, Package, TrendingUp, ShieldCheck, HelpCircle, DollarSign, Building, Clock, ShoppingCart, Warehouse, BarChart3, Mail } from "lucide-react";
+import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
export default function SaasTemplatePage() {
const navItems = [
{ name: "Özellikler", id: "features" },
{ name: "Fiyatlandırma", id: "pricing" },
+ { name: "İzlenebilirlik", id: "traceability" },
{ name: "Hakkımızda", id: "about" },
{ name: "İletişim", id: "contact" },
];
@@ -40,7 +42,8 @@ export default function SaasTemplatePage() {
{ icon: Package, title: "Sipariş Otomasyonu", subtitle: "Verimli Akış", detail: "Siparişleri otomatikleştirin" },
{ icon: Warehouse, title: "Depo Optimizasyonu", subtitle: "Alan Kullanımı", detail: "Depo alanınızı en iyi şekilde kullanın" },
],
- title: "Akıllı Stok Optimizasyonu", description: "Tedarik zincirinizi otomatikleştirin, talep tahminleri yapın ve aşırı stok maliyetlerinden kaçının."}
+ title: "Akıllı Stok Optimizasyonu", description: "Tedarik zincirinizi otomatikleştirin, talep tahminleri yapın ve aşırı stok maliyetlerinden kaçının."
+ }
];
return (
@@ -103,6 +106,39 @@ export default function SaasTemplatePage() {
title: "Gerçek Zamanlı Envanter Takibi", description: "Stok seviyelerini anlık olarak izleyin ve olası sorunlara hızla müdahale edin."},
]}
/>
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/production/page.tsx b/src/app/production/page.tsx
new file mode 100644
index 0000000..5f67305
--- /dev/null
+++ b/src/app/production/page.tsx
@@ -0,0 +1,57 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import HeroCentered from "@/components/sections/hero/HeroCentered";
+import { Wrench, BookOpen, Factory, ShoppingCart, Clock, DollarSign, ListChecks, Database, FlaskConical } from "lucide-react";
+
+export default function ProductionPage() {
+ const navItems = [
+ { name: "Özellikler", id: "features" },
+ { name: "Üretim", href: "/production" },
+ { name: "Reçeteler", href: "/recipes" },
+ { name: "Fiyatlandırma", id: "pricing" },
+ { name: "Hakkımızda", id: "about" },
+ { name: "İletişim", id: "contact" }
+ ];
+
+ const avatars = [
+ { src: "http://img.b2bpic.net/free-photo/cheerful-middle-aged-businesswoman_1262-21005.jpg", alt: "İşletme Sahibi 1" },
+ { src: "http://img.b2bpic.net/free-photo/smiling-man-his-work-time-office-job_23-2149571041.jpg", alt: "İşletme Sahibi 2" },
+ { src: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-as-lawyer_23-2151202451.jpg", alt: "İşletme Sahibi 3" },
+ { src: "http://img.b2bpic.net/free-photo/happy-afroamerican-employee-portrait_23-2148508904.jpg", alt: "İşletme Sahibi 4" },
+ ];
+
+ return (
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/recipes/page.tsx b/src/app/recipes/page.tsx
new file mode 100644
index 0000000..bc97572
--- /dev/null
+++ b/src/app/recipes/page.tsx
@@ -0,0 +1,57 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import HeroCentered from "@/components/sections/hero/HeroCentered";
+import { FlaskConical, ListChecks, Database, DollarSign, Clock, Wrench, BookOpen, Factory, ShoppingCart } from "lucide-react";
+
+export default function RecipesPage() {
+ const navItems = [
+ { name: "Özellikler", id: "features" },
+ { name: "Üretim", href: "/production" },
+ { name: "Reçeteler", href: "/recipes" },
+ { name: "Fiyatlandırma", id: "pricing" },
+ { name: "Hakkımızda", id: "about" },
+ { name: "İletişim", id: "contact" }
+ ];
+
+ const avatars = [
+ { src: "http://img.b2bpic.net/free-photo/cheerful-middle-aged-businesswoman_1262-21005.jpg", alt: "İşletme Sahibi 1" },
+ { src: "http://img.b2bpic.net/free-photo/smiling-man-his-work-time-office-job_23-2149571041.jpg", alt: "İşletme Sahibi 2" },
+ { src: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-as-lawyer_23-2151202451.jpg", alt: "İşletme Sahibi 3" },
+ { src: "http://img.b2bpic.net/free-photo/happy-afroamerican-employee-portrait_23-2148508904.jpg", alt: "İşletme Sahibi 4" },
+ ];
+
+ return (
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/superadmin/page.tsx b/src/app/superadmin/page.tsx
new file mode 100644
index 0000000..5809d52
--- /dev/null
+++ b/src/app/superadmin/page.tsx
@@ -0,0 +1,94 @@
+"use client";
+
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
+import FeatureCardTwentyNine from "@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import { Building, Users, Settings, Key, Shield, ListChecks } from "lucide-react";
+
+export default function SuperadminPage() {
+ const navItems = [
+ { name: "Özellikler", id: "features" },
+ { name: "Fiyatlandırma", id: "pricing" },
+ { name: "Hakkımızda", id: "about" },
+ { name: "İletişim", id: "contact" },
+ { name: "Yönetim Paneli", id: "/superadmin" }
+ ];
+
+ const managementFeatures = [
+ {
+ title: "Şirket Yönetimi", description: "Sistemdeki tüm şirket hesaplarını görüntüleyin, düzenleyin ve yönetin.", imageSrc: "https://images.unsplash.com/photo-1596526131083-ef1524376527?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w0NTYwMDR8MHwxfHNlYXJjaHw3fHxjb21wYW55JTIwbWFuYWdlbWVudHxlbnwwfHx8fDE3MTc4NTM0MTl8MA&ixlib=rb-4.0.3&q=80&w=1080", imageAlt: "Company Management", titleImageSrc: "", buttonText: "Detaylar", buttonHref: "#"
+ },
+ {
+ title: "Modül Yetkilendirme", description: "Farklı özellik modüllerine erişim yetkilerini kullanıcı rolleri bazında atayın.", imageSrc: "https://images.unsplash.com/photo-1522071820081-009f0129c71c?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w0NTYwMDR8MHwxfHNlYXJjaHw3fHxleHBhbmRpbmclMjBzZXJ2aWNlc3xlbnwwfHx8fDE3MTc4NTM0Mzh8MA&ixlib=rb-4.0.3&q=80&w=1080", imageAlt: "Module Authorization", titleImageSrc: "", buttonText: "Detaylar", buttonHref: "#"
+ },
+ {
+ title: "Kullanıcı Rol Yönetimi", description: "Kullanıcı rollerini (admin, çalışan, vb.) tanımlayın ve yetkilerini özelleştirin.", imageSrc: "https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w0NTYwMDR8MHwxfHNlYXJjaHw3fHx1c2VyJTIwcm9sZXMlMjBtYW5hZ2VtZW50fGVufDB8fHx8MTcxNzg1MzQ0OHww&ixlib=rb-4.0.3&q=80&w=1080", imageAlt: "User Role Management", titleImageSrc: "", buttonText: "Detaylar", buttonHref: "#"
+ },
+ {
+ title: "Sistem Ayarları", description: "Sistem çapında genel ayarları yapılandırın ve platform davranışlarını belirleyin.", imageSrc: "https://images.unsplash.com/photo-1627398242470-f47117e1893c?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w0NTYwMDR8MHwxfHNlYXJjaHw3fHxzeXN0ZW0lMjBzZXR0aW5nc3xlbnwwfHx8fDE3MTc4NTM0NjR8MA&ixlib=rb-403&q=80&w=1080", imageAlt: "System-wide Settings", titleImageSrc: "", buttonText: "Detaylar", buttonHref: "#"
+ }
+ ];
+
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file