Files
imphnen-frontend-service/apps/landing/src/app/page.tsx
T

18 lines
429 B
TypeScript
Raw Normal View History

2025-04-27 05:44:11 +07:00
import { Community } from './_components/community';
2025-04-27 05:38:34 +07:00
import { Features } from './_components/features';
2025-04-27 05:28:37 +07:00
import { Header } from './_components/header';
2025-04-27 05:35:49 +07:00
import { Hero } from './_components/hero';
2025-04-26 21:13:19 +07:00
export default function Page() {
return (
2025-04-27 05:28:37 +07:00
<div className="flex min-h-screen flex-col">
<Header />
2025-04-27 05:35:49 +07:00
<main className="flex-1">
<Hero />
2025-04-27 05:38:34 +07:00
<Features />
2025-04-27 05:44:11 +07:00
<Community />
2025-04-27 05:35:49 +07:00
</main>
2025-04-27 05:28:37 +07:00
</div>
);
2025-04-26 20:32:58 +07:00
}