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 ( + <> + +
+ +
+ + ); +}