diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx new file mode 100644 index 0000000..f9fe1d6 --- /dev/null +++ b/src/app/admin/page.tsx @@ -0,0 +1,94 @@ +"use client"; + +import React from "react"; +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function AdminPage() { + const navItems = [ + { name: "Hizmetler", id: "services" }, + { name: "Hakkımızda", id: "about" }, + { name: "Neden Biz?", id: "why-us" }, + { name: "Ekibimiz", id: "team" }, + { name: "Referanslar", id: "testimonials" }, + { name: "İletişim", id: "contact" } + ]; + + const footerColumns = [ + { + title: "Hizmetler", items: [ + { label: "Bahçe Tasarımı", href: "#services" }, + { label: "Peyzaj Uygulamaları", href: "#services" }, + { label: "Otomatik Sulama", href: "#services" }, + { label: "Periyodik Bakım", href: "#services" } + ] + }, + { + title: "Şirket", items: [ + { label: "Hakkımızda", href: "#about" }, + { label: "Ekibimiz", href: "#team" }, + { label: "Referanslar", href: "#testimonials" }, + { label: "S.S.S.", href: "#faq" }, + { label: "Admin", href: "/admin" } + ] + }, + { + title: "İletişim", items: [ + { label: "(0212) 123 45 67", href: "tel:+902121234567" }, + { label: "info@greenartpeyzaj.com", href: "mailto:info@greenartpeyzaj.com" }, + { label: "İstanbul, Türkiye" } + ] + } + ]; + + return ( + + + + +
+

Admin Panel

+

+ This is a placeholder for the Admin system, including authentication, dashboard UI, and content management interfaces for editing text and managing photo uploads. +

+
+ Login + Dashboard + Manage Content + Manage Photos +
+

+ (Actual features and functionality for these sections are beyond the scope of this refactoring, requiring custom component development and backend integration.) +

+
+ + +
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index f57a49b..613b35f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,6 +15,33 @@ import FooterSimple from "@/components/sections/footer/FooterSimple"; import { Leaf, TreePine } from "lucide-react"; export default function LandscapingPage() { + const footerColumns = [ + { + title: "Hizmetler", items: [ + { label: "Bahçe Tasarımı", href: "#services" }, + { label: "Peyzaj Uygulamaları", href: "#services" }, + { label: "Otomatik Sulama", href: "#services" }, + { label: "Periyodik Bakım", href: "#services" }, + ], + }, + { + title: "Şirket", items: [ + { label: "Hakkımızda", href: "#about" }, + { label: "Ekibimiz", href: "#team" }, + { label: "Referanslar", href: "#testimonials" }, + { label: "S.S.S.", href: "#faq" }, + { label: "Admin", href: "/admin" } + ], + }, + { + title: "İletişim", items: [ + { label: "(0212) 123 45 67", href: "tel:+902121234567" }, + { label: "info@greenartpeyzaj.com", href: "mailto:info@greenartpeyzaj.com" }, + { label: "İstanbul, Türkiye" }, + ], + }, + ]; + return (