feat: add featured agents data to the Prisma seed.

This commit is contained in:
pradeepkumar
2026-03-23 11:25:56 +05:30
parent 3e7e3683ed
commit 9c270a942c

View File

@@ -1397,6 +1397,32 @@ async function main() {
description: 'Thousands of buyers, sellers, and renters trust our platform to find reliable agents. Our professionals help people navigate property journeys with confidence and ease.',
},
],
featuredAgents: [
{
name: 'Anderson',
role: 'Rental & Investment Consultant',
rating: '4.9',
location: 'New York',
experience: '7+ years in the real estate industry.',
imageUrl: '/assets/images/agent-anderson.jpg',
},
{
name: 'Deepak',
role: 'Rental & Investment Consultant',
rating: '4.9',
location: 'New York',
experience: '7+ years in the real estate industry.',
imageUrl: '/assets/images/agent-deepak.jpg',
},
{
name: 'Daniel',
role: 'Rental & Investment Consultant',
rating: '4.9',
location: 'New York',
experience: '7+ years in the real estate industry.',
imageUrl: '/assets/images/agent-daniel.jpg',
},
],
},
},
{