feat: Redesign the home page hero section with a new background image and enhanced search UI, and standardize user dashboard routing across the application.

This commit is contained in:
pradeepkumar
2026-01-19 09:46:32 +05:30
parent db3b12507e
commit 5a845e4b5d
9 changed files with 174 additions and 99 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>
<HeroSection />
<FeaturesSection />
<FeaturedAgents />
<TopProfessionals />
<TestimonialsSection />
</div>
);
}