diff --git a/src/App.tsx b/src/App.tsx index fbc6d65..b057bb6 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,6 +4,7 @@ import PlansPage from "@/pages/PlansPage"; import AboutPage from "@/pages/AboutPage"; import ContactPage from "@/pages/ContactPage"; +import TeamTestimonialsPage from "@/pages/TeamTestimonialsPage"; export default function App() { return ( @@ -11,6 +12,7 @@ export default function App() { } /> } /> } /> + } /> ); } diff --git a/src/pages/TeamTestimonialsPage.tsx b/src/pages/TeamTestimonialsPage.tsx new file mode 100644 index 0000000..e520cf6 --- /dev/null +++ b/src/pages/TeamTestimonialsPage.tsx @@ -0,0 +1,39 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import TeamDetailedCards from "@/components/sections/team/TeamDetailedCards"; +import TestimonialRatingCards from "@/components/sections/testimonial/TestimonialRatingCards"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function TeamTestimonialsPage() { + return ( +
+ + + + +
+ ); +} diff --git a/src/routes.ts b/src/routes.ts index ee7f4f2..851a8b3 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -9,4 +9,5 @@ export const routes: Route[] = [ { path: '/plans', label: 'Plans', pageFile: 'PlansPage' }, { path: '/about', label: 'About', pageFile: 'AboutPage' }, { path: '/contact', label: 'Contact', pageFile: 'ContactPage' }, + { path: '/team-testimonials', label: 'Team Testimonials', pageFile: 'TeamTestimonialsPage' }, ];