diff --git a/src/App.tsx b/src/App.tsx index b057bb6..ab299b5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,6 +5,7 @@ import PlansPage from "@/pages/PlansPage"; import AboutPage from "@/pages/AboutPage"; import ContactPage from "@/pages/ContactPage"; import TeamTestimonialsPage from "@/pages/TeamTestimonialsPage"; +import PricingPage from "@/pages/PricingPage"; export default function App() { return ( @@ -13,6 +14,7 @@ export default function App() { } /> } /> } /> + } /> ); } diff --git a/src/pages/PricingPage.tsx b/src/pages/PricingPage.tsx new file mode 100644 index 0000000..341dee1 --- /dev/null +++ b/src/pages/PricingPage.tsx @@ -0,0 +1,16 @@ +import PricingHighlightedCards from "@/components/sections/pricing/PricingHighlightedCards"; + +export default function PricingPage() { + return ( + <> + + + ); +} diff --git a/src/routes.ts b/src/routes.ts index 851a8b3..d7d849c 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -10,4 +10,5 @@ export const routes: Route[] = [ { path: '/about', label: 'About', pageFile: 'AboutPage' }, { path: '/contact', label: 'Contact', pageFile: 'ContactPage' }, { path: '/team-testimonials', label: 'Team Testimonials', pageFile: 'TeamTestimonialsPage' }, + { path: '/pricing', label: 'Pricing', pageFile: 'PricingPage' }, ];