diff --git a/apps/blade/public/resume.pdf b/apps/blade/public/resume.pdf new file mode 100644 index 00000000..38bb560a Binary files /dev/null and b/apps/blade/public/resume.pdf differ diff --git a/apps/blade/src/app/kauan-lima/page.tsx b/apps/blade/src/app/kauan-lima/page.tsx new file mode 100644 index 00000000..e2c2a740 --- /dev/null +++ b/apps/blade/src/app/kauan-lima/page.tsx @@ -0,0 +1,157 @@ +"use client"; + +import { useState } from "react"; + +interface GalleryItem { + id: string; + imageUrl: string; + title: string; +} +// +const initialArtwork: GalleryItem[] = [ + //{ id: "1", imageUrl: "https://i.imgur.com/placeholder1.jpg", title: "Bond Sketch" }, + //{ id: "1", imageUrl: "https://drive.google.com/uc?export=view&id=1C_kkvCLFNR9drlsyNs_y8WRGY_N_87g7", title: "Resume" }, + { id: "2", imageUrl: "https://i.imgur.com/KM42G22.jpeg", title: "Chromakopia" }, + //{ id: "3", imageUrl: "https://i.imgur.com/placeholder3.jpg", title: "Verso" }, + //{ id: "4", imageUrl: "https://i.imgur.com/placeholder4.jpg", title: "WhatsApp Icon" }, + //{ id: "5", imageUrl: "https://i.imgur.com/placeholder5.jpg", title: "Dragon Fantasy" }, + //{ id: "6", imageUrl: "https://i.imgur.com/placeholder6.jpg", title: "Portrait Study" }, + { id: "7", imageUrl: "https://i.imgur.com/OsiQAhZ.jpeg", title: "Pan'Din'Monium Part 1" }, + { id: "8", imageUrl: "https://i.imgur.com/DI7NsZv.jpeg", title: "Pan'Din'Monium Part 2" }, + { id: "9", imageUrl: "https://i.imgur.com/sVMSKpf.jpeg", title: "Pan'Din'Monium Part 3" }, + { id: "10", imageUrl: "https://i.imgur.com/L7nc7nc.jpeg", title: "Pan'Din'Monium Part 4" }, + { id: "11", imageUrl: "https://i.imgur.com/egkukMr.jpeg", title: "...And Justice For All" }, + { id: "12", imageUrl: "https://i.imgur.com/chBfZDT.jpeg", title: "Seaweed" }, +]; + +export default function KauanLimaPage() { + const [selectedImage, setSelectedImage] = useState(null); + + return ( +
+ {/* Animated background effect */} +
+
+
+
+ + {/* Header */} +
+
+
+

+ KAUAN LIMA +

+ +
+ {/* Social Links */} + +
+
+ + {/* Main Content */} +
+ {/* Gallery Grid */} +
+ + {/* Footer */} +
+

© 2026 Kauan Lima Portfolio. All rights reserved.

+
+ + {/* Image Modal/Lightbox */} + {selectedImage && ( +
setSelectedImage(null)} + > + +
+ {selectedImage.title} e.stopPropagation()} + /> +

+ {selectedImage.title} +

+
+
+ )} +
+ ); +}