diff --git a/src/components/Gallery.js b/src/components/Gallery.js index 2082037..4954312 100644 --- a/src/components/Gallery.js +++ b/src/components/Gallery.js @@ -25,6 +25,7 @@ import photo10 from "./Photo10"; import photo11 from "./Photo11"; import photo12 from "./Photo12"; import photo13 from "./Photo13"; +import photo14 from "./Photo14"; const slides = photos.map(({ src, width, height, images }) => ({ src, @@ -166,6 +167,16 @@ const slides13 = photo13.map(({ src, width, height, images }) => ({ height: image.height, })), })); +const slides14 = photo14.map(({ src, width, height, images }) => ({ + src, + width, + height, + srcSet: images.map((image) => ({ + src: image.src, + width: image.width, + height: image.height, + })), +})); function Gallery() { const [index, setIndex] = useState(-1); @@ -182,6 +193,7 @@ function Gallery() { const [index11, setIndex11] = useState(-1); const [index12, setIndex12] = useState(-1); const [index13, setIndex13] = useState(-1); + const [index14, setIndex14] = useState(-1); const [loading, setLoading] = useState(false); useEffect(() => { setLoading(true); @@ -403,7 +415,7 @@ function Gallery() { close={() => setIndex11(-1)} plugins={[Fullscreen, Slideshow, Thumbnails, Zoom]} /> - +

Tertiary Graduation Ceremony (passes year 2022)

@@ -438,6 +450,23 @@ function Gallery() { close={() => setIndex13(-1)} plugins={[Fullscreen, Slideshow, Thumbnails, Zoom]} /> +
+

faculty and students training at V. R. Jamdar excellence centre, V. N. I. T, Nagpur

+
+ + setIndex14(index14)} + /> + = 0} + index={index14} + close={() => setIndex14(-1)} + plugins={[Fullscreen, Slideshow, Thumbnails, Zoom]} + />

Previous Year Events

diff --git a/src/components/Photo10.js b/src/components/Photo10.js index 937aaaa..2823bb2 100644 --- a/src/components/Photo10.js +++ b/src/components/Photo10.js @@ -3,8 +3,7 @@ const breakpoints = [3840, 2400, 1080, 640, 384, 256, 128, 96, 64, 48]; const Steam = (id: string, width: number, height: number) => `https://i.postimg.cc/${id}`; const SteamPhoto = [ - - + { id: "R0G507Jy/steamboiler1.webp", width: 1080, height: 780 }, { id: "0Ntk4Rnz/steamboiler10.webp", width: 1080, height: 780 }, { id: "tTYqQSv2/steamboiler11.webp", width: 780, height: 1080 }, diff --git a/src/components/Photo11.js b/src/components/Photo11.js index b526c8a..5d33acd 100644 --- a/src/components/Photo11.js +++ b/src/components/Photo11.js @@ -3,7 +3,7 @@ const breakpoints = [3840, 2400, 1080, 640, 384, 256, 128, 96, 64, 48]; const Innovative = (id: string, width: number, height: number) => `https://i.postimg.cc/${id}`; const InnovativePhoto = [ - + { id: "2SmtM00v/innovative1.webp", width: 780, height: 1080 }, { id: "6p9HYyQf/innovative10.webp", width: 1080, height: 780 }, diff --git a/src/components/Photo14.js b/src/components/Photo14.js new file mode 100644 index 0000000..4b70867 --- /dev/null +++ b/src/components/Photo14.js @@ -0,0 +1,56 @@ +const breakpoints = [3840, 2400, 1080, 640, 384, 256, 128, 96, 64, 48]; + +const Fst = (id: string, width: number, height: number) => + `https://i.postimg.cc/${id}`; +const FstPhoto = [ + + { id: "zGDqdQY4/fst10.webp", width: 1080, height: 780 }, + { id: "PxvXW8nx/fst1.webp", width: 1080, height: 780 }, + { id: "59w1fJxZ/fst11.webp", width: 1080, height: 780 }, + { id: "QMHhDWtb/fst12.webp", width: 1080, height: 780 }, + { id: "bvW8wNSj/fst13.webp", width: 1080, height: 780 }, + { id: "JnX8DVjH/fst14.webp", width: 1080, height: 780 }, + { id: "cCNSf9c9/fst15.webp", width: 1080, height: 780 }, + { id: "KjryfPqZ/fst16.webp", width: 1080, height: 780 }, + { id: "DwzKQbqT/fst17.webp", width: 1080, height: 780 }, + { id: "LXjd4kMz/fst18.webp", width: 1080, height: 780 }, + { id: "R065y5sp/fst19.webp", width: 1080, height: 780 }, + { id: "28rY6ty3/fst2.webp", width: 1080, height: 780 }, + { id: "43DkTLjf/fst20.webp", width: 1080, height: 780 }, + { id: "3NZPmKNN/fst21.webp", width: 1080, height: 780 }, + { id: "Bb3rj8qR/fst22.webp", width: 1080, height: 780 }, + { id: "T3HvtY9W/fst23.webp", width: 1080, height: 780 }, + { id: "903WJFcB/fst3.webp", width: 1080, height: 780 }, + { id: "L6DpZVgD/fst4.webp", width: 1080, height: 780 }, + { id: "mZMZhMSp/fst5.webp", width: 1080, height: 780 }, + { id: "mgdBKSbk/fst6.webp", width: 1080, height: 780 }, + { id: "5NSxSVTw/fst7.webp", width: 1080, height: 780 }, + { id: "X7bj5JHj/fst8.webp", width: 1080, height: 780 }, + { id: "hv9KwWjR/fst9.webp", width: 1080, height: 780 }, + + +]; + + + + +const photos = FstPhoto.map((photo) => { + const width = breakpoints[0]; + const height = (photo.height / photo.width) * width; + + return { + src: Fst(photo.id, width, height), + width, + height, + images: breakpoints.map((breakpoint) => { + const height = Math.round((photo.height / photo.width) * breakpoint); + return { + src: Fst(photo.id, breakpoint, height), + width: breakpoint, + height, + }; + }), + }; +}); + +export default photos; \ No newline at end of file diff --git a/src/components/Photo8.js b/src/components/Photo8.js index 6176b3a..5b0bf1f 100644 --- a/src/components/Photo8.js +++ b/src/components/Photo8.js @@ -4,7 +4,7 @@ const Bis = (id: string, width: number, height: number) => `https://i.postimg.cc/${id}.jpg`; const IRONPhoto = [ - + { id: "hPP8V3WC/iron1.jpg", width: 1080, height: 780}, { id: "k4mKGTvv/iron2.jpg", width: 1080, height: 780}, { id: "YSgQt5YS/iron2sad.jpg", width: 1080, height: 780}, diff --git a/src/components/Photo9.js b/src/components/Photo9.js index a5a9c96..f05fdc5 100644 --- a/src/components/Photo9.js +++ b/src/components/Photo9.js @@ -3,7 +3,7 @@ const breakpoints = [3840, 2400, 1080, 640, 384, 256, 128, 96, 64, 48]; const Semi = (id: string, width: number, height: number) => `https://i.postimg.cc/${id}`; const IRONPhoto = [ - + { id: "GmhmhPLy/semiconductor1.webp", width: 780, height: 1080 }, { id: "ZKYSrTGk/semiconductor10.webp", width: 1080, height: 780 }, diff --git a/src/components/Scrollbar2.js b/src/components/Scrollbar2.js index c1847d6..4fcfc9d 100644 --- a/src/components/Scrollbar2.js +++ b/src/components/Scrollbar2.js @@ -151,7 +151,79 @@ export default function Scrollbar() { - + + + + IRON & IRON CARBIDE LECTURE + + During his presentation, Mr. Borekar emphasized the ubiquitous nature of semiconductors, highlighting their presence in almost every aspect of modern life, from smartphones and computers to medical devices and automobiles + + + + + + + + + INSIGHTS OF SEMICONDUCTOR INDUSTRY + + During his presentation, Mr. Borekar emphasized the ubiquitous nature of semiconductors, highlighting their presence in almost every aspect of modern life, from smartphones and computers to medical devices and automobiles + + + + + + + + + SEMINAR ON SKILL DEVELOPMENT AND CAREER OPPORTUNITIES IN STEAM BOILER + + The participants left with not only a deepened understanding of steam boilers but also a heightened motivation to pursue careers in this industry. + + + + + + + + + INNOVATIVE MANUFACTURING PROCESS IN AUTOMOTIVE INDUSTRY + + Around 100 students of mechanical department were the part of this workshop. All the faculty members and students found this lecture very educative and informative. + + + + + + + + + TERTIARY GRADUATION CEREMONY (PASSES YEAR 2022) + + The participants left with not only a deepened understanding of steam boilers but also a heightened motivation to pursue careers in this industry. + + + + + + + + + DRISHTI 2K23 + + Rooted in our collective spirit, Drishti symbolizes the drive for excellence achieved through teamwork. With the unity of all participants, this tech fest is coming back stronger than ever. + + + + + + ); diff --git a/src/components/semiconductor.text b/src/components/semiconductor.text index 8a44624..4a8e54f 100644 --- a/src/components/semiconductor.text +++ b/src/components/semiconductor.text @@ -1,10 +1,23 @@ -https://i.postimg.cc/Z5zrcRTK/drishti1.webp -https://i.postimg.cc/Hk0bPgx0/drishti10.webp -https://i.postimg.cc/25m7z5JX/drishti2.webp -https://i.postimg.cc/wBVc3pYx/drishti3.webp -https://i.postimg.cc/PfcbCy9D/drishti4.webp -https://i.postimg.cc/qRvc35ps/drishti5.webp -https://i.postimg.cc/PxVWzQqB/drishti6.webp -https://i.postimg.cc/4N96VtRS/drishti7.webp -https://i.postimg.cc/FzfjPkd1/drishti8.webp -https://i.postimg.cc/GtZv63GK/drishti9.webp +zGDqdQY4/fst10.webp +PxvXW8nx/fst1.webp +59w1fJxZ/fst11.webp +QMHhDWtb/fst12.webp +bvW8wNSj/fst13.webp +JnX8DVjH/fst14.webp +cCNSf9c9/fst15.webp +KjryfPqZ/fst16.webp +DwzKQbqT/fst17.webp +LXjd4kMz/fst18.webp +R065y5sp/fst19.webp +28rY6ty3/fst2.webp +43DkTLjf/fst20.webp +3NZPmKNN/fst21.webp +Bb3rj8qR/fst22.webp +T3HvtY9W/fst23.webp +903WJFcB/fst3.webp +L6DpZVgD/fst4.webp +mZMZhMSp/fst5.webp +mgdBKSbk/fst6.webp +5NSxSVTw/fst7.webp +X7bj5JHj/fst8.webp +hv9KwWjR/fst9.webp