tpmjs/apps/web/src/app/features/page.tsx

15 lines
314 B
TypeScript

'use client';
import { AppHeader } from '../../components/AppHeader';
import { FeaturesSection } from '../../components/home/FeaturesSection';
export default function FeaturesPage(): React.ReactElement {
return (
<>
<AppHeader />
<main>
<FeaturesSection />
</main>
</>
);
}