feat: add cloudinary image upload to project forms, fix project details gallery styling, add gallery preview to project list

This commit is contained in:
mstfyldz
2026-06-05 21:35:46 +03:00
parent 3794a70901
commit 1f1bb8d913
9 changed files with 157 additions and 10 deletions
+9
View File
@@ -0,0 +1,9 @@
import { v2 as cloudinary } from 'cloudinary'
cloudinary.config({
cloud_name: process.env.NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME,
api_key: process.env.CLOUDINARY_API_KEY,
api_secret: process.env.CLOUDINARY_API_SECRET,
})
export default cloudinary