From aa438078f9a3548ca9d998968939a98dd031bea6 Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Sun, 18 Jan 2026 02:13:23 +1000 Subject: [PATCH] feat: add hidden /features page for development --- apps/web/src/app/features/page.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 apps/web/src/app/features/page.tsx diff --git a/apps/web/src/app/features/page.tsx b/apps/web/src/app/features/page.tsx new file mode 100644 index 0000000..ee9d484 --- /dev/null +++ b/apps/web/src/app/features/page.tsx @@ -0,0 +1,15 @@ +'use client'; + +import { AppHeader } from '../../components/AppHeader'; +import { FeaturesSection } from '../../components/home/FeaturesSection'; + +export default function FeaturesPage(): React.ReactElement { + return ( + <> + +
+ +
+ + ); +}