feat(landing): login register

This commit is contained in:
xirf
2025-09-21 15:42:58 +07:00
parent 8e7c6e6c21
commit 4d4b92b357
6 changed files with 120 additions and 46 deletions
@@ -0,0 +1,14 @@
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 />
</>
);
}