Skip to content

Commit b71d9ee

Browse files
Fix: Add link to pricing page
The pricing page was not linked in the landing page. This commit adds a link to the pricing page in the header.
1 parent 1853674 commit b71d9ee

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import '@/i18n';
1111
import PrivacyPage from '@/pages/PrivacyPage';
1212
import LegalPage from '@/pages/LegalPage';
1313
import LandingPage from '@/pages/LandingPage';
14+
import PricingPage from '@/pages/PricingPage';
1415
import { Dashboard } from '@/components/Dashboard';
1516

1617
const Index = lazy(() => import('@/pages/Index'));
@@ -44,6 +45,7 @@ function App() {
4445
</div>}>
4546
<Routes>
4647
<Route path="/" element={<LandingPage />} />
48+
<Route path="/pricing" element={<PricingPage />} />
4749
<Route path="/app" element={<Index />} />
4850
<Route path="/dashboard" element={<Dashboard />} />
4951
<Route path="/campaign/:campaignId" element={<AdvancedStatsPage />} />

0 commit comments

Comments
 (0)