Files
imphnen-frontend-service/apps/landing/src/app/(public)/(home)/home/page.tsx
T
2025-09-21 15:42:58 +07:00

15 lines
423 B
TypeScript

import { CommunitySection } from '../_components/community-section';
import { CTASection } from '../_components/cta-section';
import { HeroSection } from '../_components/hero-section';
import { TestimonialSection } from '../_components/testimonial-section';
export default function Page() {
return (
<>
<HeroSection />
<CommunitySection />
<TestimonialSection />
<CTASection />
</>
);
}