Skip to content

Commit

Permalink
add 2023 photos to gallery
Browse files Browse the repository at this point in the history
  • Loading branch information
fahimmehraj committed Mar 1, 2024
1 parent a5a2f17 commit c69b854
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions app/gallery/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ import { Transition, Dialog } from "@headlessui/react";
import { Fragment, useState } from "react";
import NavBar from "../components/nav/NavBar";

const photos_2023 = [
"DSC_1045.JPG",
"DSC_1110.JPG",
"DSC_1128.JPG",
"DSC_1129.JPG",
"DSC_1130.JPG",
"DSC_1134.JPG",
"DSC_1141.JPG",
"DSC_1142.JPG",
"DSC_1146.JPG",
"DSC_1151.JPG",
"DSC_1153.JPG",
];

const photos_2022 = [
"DSC_8260.JPG",
"DSC_8278.JPG",
Expand Down Expand Up @@ -106,6 +120,23 @@ export default function Gallery() {
<div className="mb-8 flex items-center justify-center">
<span className="font-morro underline decoration-green-500 decoration-4 underline-offset-8 py-6 text-7xl md:text-5xl">GALLERY</span>
</div>
<h1 className="mb-3 inline-block border-b-4 border-yellow-500 text-4xl">2023</h1>
<div className="flex justify-center">
<div className="grid grid-cols-1 gap-8 lg:grid-cols-3">
{photos_2023.map((photo: string, i: number) => (
<Image
className="hover:border-box hover:outline-3 outline-solid box-border cursor-pointer rounded-xl outline-green-500 transition duration-200 hover:outline"
src={`/gallery/2023/${photo}`}
width={620}
height={200}
key={i}
sizes="(max-width: 640px) 100vw, (max-width: 768px) 50vw, 33vw"
alt={""}
onClick={() => setSelectedImage(`/gallery/2022/${photo}`)}
/>
))}
</div>
</div>
<h1 className="mb-3 inline-block border-b-4 border-yellow-500 text-4xl">2022</h1>
<div className="flex justify-center">
<div className="grid grid-cols-1 gap-8 lg:grid-cols-3">
Expand Down
Binary file added public/gallery/2023/DSC_1045.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gallery/2023/DSC_1110.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gallery/2023/DSC_1128.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gallery/2023/DSC_1129.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gallery/2023/DSC_1130.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gallery/2023/DSC_1134.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gallery/2023/DSC_1141.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gallery/2023/DSC_1142.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gallery/2023/DSC_1146.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gallery/2023/DSC_1151.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gallery/2023/DSC_1153.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

1 comment on commit c69b854

@vercel
Copy link

@vercel vercel bot commented on c69b854 Mar 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

website – ./

website-atomhacks.vercel.app
website-git-production-atomhacks.vercel.app
atomhacks.org

Please sign in to comment.