We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1853674 commit b71d9eeCopy full SHA for b71d9ee
src/App.tsx
@@ -11,6 +11,7 @@ import '@/i18n';
11
import PrivacyPage from '@/pages/PrivacyPage';
12
import LegalPage from '@/pages/LegalPage';
13
import LandingPage from '@/pages/LandingPage';
14
+import PricingPage from '@/pages/PricingPage';
15
import { Dashboard } from '@/components/Dashboard';
16
17
const Index = lazy(() => import('@/pages/Index'));
@@ -44,6 +45,7 @@ function App() {
44
45
</div>}>
46
<Routes>
47
<Route path="/" element={<LandingPage />} />
48
+ <Route path="/pricing" element={<PricingPage />} />
49
<Route path="/app" element={<Index />} />
50
<Route path="/dashboard" element={<Dashboard />} />
51
<Route path="/campaign/:campaignId" element={<AdvancedStatsPage />} />
0 commit comments