Update gallery to bento grid, add real reviews, update phone numbers and locations

This commit is contained in:
Ayris Dev
2026-07-15 13:51:22 +03:00
parent d4bcbb0cc3
commit 7a874ab11d
43 changed files with 1234 additions and 790 deletions
+19
View File
@@ -0,0 +1,19 @@
import 'dotenv/config';
import prisma from './lib/prisma';
async function main() {
const imageUrl = "https://media.ayris.tech/t/kitebeachakyaka/kitesurf.png";
await prisma.activity.updateMany({
where: {
title: "Kitesurf"
},
data: {
image: imageUrl
}
});
console.log("Kitesurf activity image updated to the local one successfully!");
}
main().catch(console.error).finally(() => prisma.$disconnect());