Skip to content

Commit 72d4ced

Browse files
feat(venue): add new venue photo gallery images
1 parent 9e8829f commit 72d4ced

File tree

10 files changed

+26
-1
lines changed

10 files changed

+26
-1
lines changed

public/venue/hub1.webp

-223 KB
Binary file not shown.

public/venue/hub2.webp

-317 KB
Binary file not shown.

public/venue/hub3.webp

-357 KB
Binary file not shown.

public/venue/pjatk-inside-1.jpeg

326 KB
Loading

public/venue/pjatk-inside-2.jpeg

315 KB
Loading

public/venue/pjatk-inside-3.jpeg

305 KB
Loading

public/venue/pjatk-inside-4.jpeg

328 KB
Loading

public/venue/pjatk-outside-1.jpeg

426 KB
Loading

public/venue/pjatk-outside-2.jpeg

395 KB
Loading

src/sections/venue.tsx

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,35 @@
1-
import { Container, Heading, Paragraph } from "theme-ui";
1+
import { Box, Container, Grid, Heading, Paragraph } from "theme-ui";
2+
3+
const venuePhotos = [
4+
"/venue/pjatk-outside-1.jpeg",
5+
"/venue/pjatk-outside-2.jpeg",
6+
"/venue/pjatk-inside-1.jpeg",
7+
"/venue/pjatk-inside-2.jpeg",
8+
"/venue/pjatk-inside-3.jpeg",
9+
"/venue/pjatk-inside-4.jpeg",
10+
];
211

312
export const Venue = () => (
413
<Container id="venue" variant="smallContainer">
514
<Heading>Venue</Heading>
615
<Paragraph>
716
📍 PJAIT building A, Auditorium, Koszykowa 86, Warsaw, Poland
817
</Paragraph>
18+
19+
<Grid columns={1} gap={3} sx={{ mt: "secondary" }}>
20+
{venuePhotos.map((photo, index) => (
21+
<Box
22+
key={photo}
23+
as="img"
24+
src={photo}
25+
alt={`PJAIT venue photo ${index + 1}`}
26+
sx={{
27+
width: "100%",
28+
height: "auto",
29+
display: "block",
30+
}}
31+
/>
32+
))}
33+
</Grid>
934
</Container>
1035
);

0 commit comments

Comments
 (0)