20 lines
589 B
TypeScript
20 lines
589 B
TypeScript
|
|
'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>
|
||
|
|
);
|
||
|
|
}
|