feat: add hidden /features page for development
This commit is contained in:
parent
028c87056a
commit
aa438078f9
1 changed files with 15 additions and 0 deletions
15
apps/web/src/app/features/page.tsx
Normal file
15
apps/web/src/app/features/page.tsx
Normal 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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue