Create gallery

This commit is contained in:
Clay Nicholson 2024-08-15 12:18:40 -04:00
parent cff573e46e
commit f9f91fa1eb

23
pages/arcade/gallery.js Normal file
View file

@ -0,0 +1,23 @@
import React from 'react'
import Nav from '../../components/Nav'
import Footer from '../../components/Footer'
import BGImg from '../../components/background-image'
import AssembleImgFile from '../../public/home/assemble.jpg'
const gallery = () => {
return (
<section>
<Nav />
<BGImg
src={AssembleImgFile}
alt="Hack Clubbers assemble at Figma HQ for the first IRL hackathon in SF since 2020: Assemble. 📸 Photo by Kunal Botla, Hack Clubber in MA!"
priority
/>
<Footer />
</section>
)
}
export default gallery