From bbb4acf20021f582f98d5aadaa218ca7af8a7857 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 18:17:41 +0000 Subject: [PATCH] Switch to version 2: added src/pages/AboutPage.tsx --- src/pages/AboutPage.tsx | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/pages/AboutPage.tsx 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 ( +
+ + + + +
+ ); +}