Seed: saas template (34 files)
This commit is contained in:
+38
@@ -0,0 +1,38 @@
|
|||||||
|
import { BrowserRouter, Routes, Route } from "react-router-dom";
|
||||||
|
import IndexPage from "@/pages/Index";
|
||||||
|
import PricingPage from "@/pages/Pricing";
|
||||||
|
import FeaturesPage from "@/pages/Features";
|
||||||
|
import AboutPage from "@/pages/About";
|
||||||
|
import BlogPage from "@/pages/Blog";
|
||||||
|
import LoginPage from "@/pages/Login";
|
||||||
|
import SignupPage from "@/pages/Signup";
|
||||||
|
import ContactPage from "@/pages/Contact";
|
||||||
|
import DashboardPage from "@/pages/Dashboard";
|
||||||
|
import AnalyticsPage from "@/pages/Analytics";
|
||||||
|
import CustomersPage from "@/pages/Customers";
|
||||||
|
import SettingsPage from "@/pages/Settings";
|
||||||
|
import ForgotPasswordPage from "@/pages/ForgotPassword";
|
||||||
|
|
||||||
|
function App() {
|
||||||
|
return (
|
||||||
|
<BrowserRouter>
|
||||||
|
<Routes>
|
||||||
|
<Route path="/" element={<IndexPage />} />
|
||||||
|
<Route path="/pricing" element={<PricingPage />} />
|
||||||
|
<Route path="/features" element={<FeaturesPage />} />
|
||||||
|
<Route path="/about" element={<AboutPage />} />
|
||||||
|
<Route path="/blog" element={<BlogPage />} />
|
||||||
|
<Route path="/login" element={<LoginPage />} />
|
||||||
|
<Route path="/signup" element={<SignupPage />} />
|
||||||
|
<Route path="/contact" element={<ContactPage />} />
|
||||||
|
<Route path="/dashboard" element={<DashboardPage />} />
|
||||||
|
<Route path="/analytics" element={<AnalyticsPage />} />
|
||||||
|
<Route path="/customers" element={<CustomersPage />} />
|
||||||
|
<Route path="/settings" element={<SettingsPage />} />
|
||||||
|
<Route path="/forgot-password" element={<ForgotPasswordPage />} />
|
||||||
|
</Routes>
|
||||||
|
</BrowserRouter>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default App;
|
||||||
Reference in New Issue
Block a user