2026-01-11 22:09:41 +05:30
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import { HeroSection } from '@/components/home/HeroSection';
|
|
|
|
|
import { FeaturesSection } from '@/components/home/FeaturesSection';
|
|
|
|
|
import { TopProfessionals } from '@/components/home/TopProfessionals';
|
|
|
|
|
import { TestimonialsSection } from '@/components/home/TestimonialsSection';
|
|
|
|
|
|
|
|
|
|
export default function UserDashboard() {
|
|
|
|
|
return (
|
2026-01-19 09:20:48 +05:30
|
|
|
<div>
|
2026-01-11 22:09:41 +05:30
|
|
|
<HeroSection />
|
|
|
|
|
<FeaturesSection />
|
|
|
|
|
<TopProfessionals />
|
|
|
|
|
<TestimonialsSection />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|