From c2dc0f8af59a224f35ecf676ff252a630f700617 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:14:08 +0000 Subject: [PATCH] Seed: travel template (16 files) --- src/App.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/App.tsx diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..1b6b0aa --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,20 @@ +import { BrowserRouter, Routes, Route } from "react-router-dom"; +import IndexPage from "@/pages/Index"; +import DestinationsPage from "@/pages/Destinations"; +import DestinationDetailPage from "@/pages/DestinationDetail"; +import ContactPage from "@/pages/Contact"; + +function App() { + return ( + + + } /> + } /> + } /> + } /> + + + ); +} + +export default App;