Skip to content

Commit f8a97ea

Browse files
committed
remove most of slashes for images
1 parent ad7a1f4 commit f8a97ea

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/data/sponsors.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ export type Sponsor = {
77
export const SPONSORS = [
88
{
99
name: "EuroPython Society",
10-
image: "/sponsors/eps-text.png",
10+
image: "sponsors/eps-text.png",
1111
link: "https://www.europython-society.org",
1212
},
1313
{
1414
name: "Ataccama",
15-
image: "/sponsors/ataccama.svg",
15+
image: "sponsors/ataccama.svg",
1616
link: "https://www.ataccama.com/",
1717
},
1818
{
1919
name: "Python Software Foundation",
20-
image: "/sponsors/psf.png",
20+
image: "sponsors/psf.png",
2121
link: "https://www.python.org/psf-landing/",
2222
},
2323
];

src/sections/organizers.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import { Container, Grid, Heading, Paragraph } from "theme-ui";
44
import Organizer from "./organizer";
55

66
const orgData = [
7-
{ name: "Anežka Müller", image: "/speakers/pizza-square.png", index: 1 },
7+
{ name: "Anežka Müller", image: "speakers/pizza-square.png", index: 1 },
88
{
99
name: "Moisés Guimarães de Medeiros",
10-
image: "/speakers/moises.jpg",
10+
image: "speakers/moises.jpg",
1111
index: 2,
1212
},
13-
{ name: "Jake Baláš", image: "/speakers/pizza-square.png", index: 3 },
13+
{ name: "Jake Baláš", image: "speakers/pizza-square.png", index: 3 },
1414
];
1515

1616
export const OrganizerSection = () => {

src/sections/venue.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ export const Venue = () => (
2424
{/*<br></br>*/}
2525
<Paragraph>Photos of the venue</Paragraph>
2626
<Image
27-
src={"/venue/clubco1.jpg"}
27+
src={"venue/clubco1.jpg"}
2828
alt="venue image"
2929
width="100%"
3030
height="auto"
3131
objectFit="contain"
3232
/>
3333
<Image
34-
src={"/venue/clubco2.jpg"}
34+
src={"venue/clubco2.jpg"}
3535
alt="venue image"
3636
width="100%"
3737
height="auto"
3838
objectFit="contain"
3939
/>
4040
<Image
41-
src={"/venue/clubco3.jpg"}
41+
src={"venue/clubco3.jpg"}
4242
alt="venue image"
4343
width="100%"
4444
height="auto"

0 commit comments

Comments
 (0)