diff --git a/src/app/epochen/modern/page.tsx b/src/app/epochen/modern/page.tsx index 26d197b..3bf1373 100644 --- a/src/app/epochen/modern/page.tsx +++ b/src/app/epochen/modern/page.tsx @@ -1,50 +1,13 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Clock, Landmark, MapPin, BookOpen } from "lucide-react"; - -export default function ModernEpochPage() { - const navItems = [ - { name: "Startseite", id: "/" }, - { name: "Epochen", id: "/epochen" }, - { name: "Recherche", id: "/research" }, - { name: "Kontakt", id: "/contact" }, - ]; - - const footerColumns = [ - { - title: "Navigation", - items: [ - { label: "Startseite", href: "/" }, - { label: "Mittelalter", href: "/epochen/mittelalter" }, - { label: "Renaissance", href: "/epochen/renaissance" }, - { label: "Barock", href: "/epochen/barock" }, - ], - }, - { - title: "Ressourcen", - items: [ - { label: "FAQ", href: "#faq" }, - { label: "Kontakt", href: "/kontakt" }, - { label: "Impressum", href: "#impressum" }, - { label: "Datenschutz", href: "#datenschutz" }, - ], - }, - { - title: "Über das Projekt", - items: [ - { label: "Facharbeit", href: "#research" }, - { label: "Archiv", href: "#archive" }, - { label: "Literatur", href: "#bibliography" }, - { label: "Förderung", href: "#support" }, - ], - }, - ]; +import Link from "next/link"; +import { Clock, Landmark, BookOpen } from "lucide-react"; +export default function ModernPage() { return ( + {/* Navbar */} -
+ {/* Early Modern Era Section */} +
-
+ {/* Residenzverlagerung Section */} +
+ +
+ + {/* Contemporary Usage Section */} +
-
- -
- + {/* Footer */} ); -} \ No newline at end of file +}