main layout

This commit is contained in:
pradeepkumar
2026-01-11 22:09:41 +05:30
parent 500c8b6e5d
commit 0c7239d7a8
22 changed files with 1847 additions and 369 deletions

View File

@@ -0,0 +1,19 @@
'use client';
import { HeroSection } from '@/components/home/HeroSection';
import { FeaturesSection } from '@/components/home/FeaturesSection';
import { FeaturedAgents } from '@/components/home/FeaturedAgents';
import { TopProfessionals } from '@/components/home/TopProfessionals';
import { TestimonialsSection } from '@/components/home/TestimonialsSection';
export default function UserDashboard() {
return (
<div className="-m-6">
<HeroSection />
<FeaturesSection />
<FeaturedAgents />
<TopProfessionals />
<TestimonialsSection />
</div>
);
}