From 9c270a942c2f8949358ab1ad0430bc86d247ba7f Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Mon, 23 Mar 2026 11:25:56 +0530 Subject: [PATCH] feat: add featured agents data to the Prisma seed. --- prisma/seed.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/prisma/seed.ts b/prisma/seed.ts index ff59e7b..9fd81b0 100644 --- a/prisma/seed.ts +++ b/prisma/seed.ts @@ -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', + }, + ], }, }, {