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:
19
src/app/(user)/user/dashboard/page.tsx
Normal file
19
src/app/(user)/user/dashboard/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user