main layout
This commit is contained in:
19
src/app/(user)/user/userprofile/page.tsx
Normal file
19
src/app/(user)/user/userprofile/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 className="-m-6">
|
||||
<HeroSection />
|
||||
<FeaturesSection />
|
||||
<FeaturedAgents />
|
||||
<TopProfessionals />
|
||||
<TestimonialsSection />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user