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

26 lines
759 B
TypeScript
Raw Normal View History

2025-04-27 09:31:24 +07:00
import { CallToAction } from './_components/call-to-action';
import { Community } from './_components/community';
import { Features } from './_components/features';
import Footer from './_components/footer';
import { Header } from './_components/header';
import { Hero } from './_components/hero';
import { LearningResources } from './_components/learning-resources';
import { Testimonials } from './_components/testimonials';
export default function Page() {
2025-04-26 20:32:58 +07:00
return (
2025-04-27 09:31:24 +07:00
<div className="flex min-h-screen flex-col">
<Header />
<main className="flex-1">
<Hero />
<Features />
<Community />
<LearningResources />
<Testimonials />
<CallToAction />
</main>
<Footer />
</div>
2025-04-26 20:32:58 +07:00
);
}