From b025a1780c2db93790bf13f0370dacd50f933a2d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 11:06:16 +0000 Subject: [PATCH 1/5] Update src/app/page.tsx --- src/app/page.tsx | 41 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) 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."}, ]} /> +
+ +
Date: Tue, 9 Jun 2026 11:06:17 +0000 Subject: [PATCH 2/5] Add src/app/product-variations/page.tsx --- src/app/product-variations/page.tsx | 74 +++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 src/app/product-variations/page.tsx diff --git a/src/app/product-variations/page.tsx b/src/app/product-variations/page.tsx new file mode 100644 index 0000000..ac88a40 --- /dev/null +++ b/src/app/product-variations/page.tsx @@ -0,0 +1,74 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import TextBox from "@/components/Textbox"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; + +export default function ProductVariationsPage() { + const navItems = [ + { name: "Özellikler", id: "features" }, + { name: "Fiyatlandırma", id: "pricing" }, + { name: "Hakkımızda", id: "about" }, + { name: "İletişim", id: "contact" }, + { name: "Varyasyonlar", href: "/product-variations" } + ]; + + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 2ed8d5f960a15e4f63226a9203b4a8e2b543872d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 11:06:17 +0000 Subject: [PATCH 3/5] Add src/app/production/page.tsx --- src/app/production/page.tsx | 57 +++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/app/production/page.tsx 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 -- 2.49.1 From 619f6cd9facc784d02a0b249c433b69ae62f85d8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 11:06:18 +0000 Subject: [PATCH 4/5] Add src/app/recipes/page.tsx --- src/app/recipes/page.tsx | 57 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/app/recipes/page.tsx 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 -- 2.49.1 From 5efcb7508ff3543376acb65e30e7b3101d822896 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 11:06:18 +0000 Subject: [PATCH 5/5] Add src/app/superadmin/page.tsx --- src/app/superadmin/page.tsx | 94 +++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 src/app/superadmin/page.tsx 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 -- 2.49.1