diff --git a/src/App.tsx b/src/App.tsx index c7045d7..0b24577 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -10,6 +10,7 @@ import PricingSimpleCards from "@/components/sections/pricing/PricingSimpleCards import ContactForm from "@/components/sections/contact/ContactForm"; import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import HistoryPage from "@/pages/HistoryPage"; export default function App() { return ( <> @@ -20,6 +21,7 @@ export default function App() { } /> } /> } /> + } />
diff --git a/src/pages/HistoryPage.tsx b/src/pages/HistoryPage.tsx new file mode 100644 index 0000000..0f81412 --- /dev/null +++ b/src/pages/HistoryPage.tsx @@ -0,0 +1,32 @@ +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import FeaturesTimelineCards from "@/components/sections/features/FeaturesTimelineCards"; +import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; + +export default function HistoryPage() { + return ( + <> + + + + + ); +} diff --git a/src/routes.ts b/src/routes.ts index d7d849c..dc01de6 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -11,4 +11,5 @@ export const routes: Route[] = [ { path: '/contact', label: 'Contact', pageFile: 'ContactPage' }, { path: '/team-testimonials', label: 'Team Testimonials', pageFile: 'TeamTestimonialsPage' }, { path: '/pricing', label: 'Pricing', pageFile: 'PricingPage' }, + { path: '/history', label: 'History', pageFile: 'HistoryPage' }, ];