feat: add hidden /features page for development

This commit is contained in:
Ajax Davis 2026-01-18 02:13:23 +10:00
parent 028c87056a
commit aa438078f9

View file

@ -0,0 +1,15 @@
'use client';
import { AppHeader } from '../../components/AppHeader';
import { FeaturesSection } from '../../components/home/FeaturesSection';
export default function FeaturesPage(): React.ReactElement {
return (
<>
<AppHeader />
<main>
<FeaturesSection />
</main>
</>
);
}