diff --git a/src/app/map-routes/page.tsx b/src/app/map-routes/page.tsx new file mode 100644 index 0000000..acfb810 --- /dev/null +++ b/src/app/map-routes/page.tsx @@ -0,0 +1,60 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { Globe } from "lucide-react"; + +export default function MapRoutesPage() { + return ( + + + +
+
+ World Map +
+
+ +

Global Maritime Routes

+

+ Explore our animated map showcasing key shipping routes and major port connections worldwide. + We connect major hubs like Singapore, Rotterdam, Shanghai, Los Angeles, and Lagos with dynamic, animated lines, + visualizing the arteries of global trade. *Note: Animated map functionality is a custom component placeholder.*

+
+ Singapore + Rotterdam + Shanghai + Los Angeles + Lagos +
+
+
+
+
+ ); +}