Files
frontend/src/app/(user)/user/dashboard/page.tsx

18 lines
480 B
TypeScript
Raw Normal View History

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 (
<div>
2026-01-11 22:09:41 +05:30
<HeroSection />
<FeaturesSection />
<TopProfessionals />
<TestimonialsSection />
</div>
);
}