diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx new file mode 100644 index 0000000..5f7f9ec --- /dev/null +++ b/src/pages/AboutPage.tsx @@ -0,0 +1,38 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; +import AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function AboutPage() { + return ( +
+ + + + +
+ ); +}