Skip to content

Commit ad7a1f4

Browse files
committed
remove slashes
1 parent b5574c2 commit ad7a1f4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/footer.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ const SOCIALS = [
1616
},
1717
{
1818
name: "twitter",
19-
icon: "/socials/twitter.png",
19+
icon: "socials/twitter.png",
2020
link: "https://twitter.com/pythonpizzaconf/",
2121
},
2222
{
2323
name: "facebook",
24-
icon: "/socials/facebook.png",
24+
icon: "socials/facebook.png",
2525
link: "https://www.facebook.com/pythonpizza/",
2626
},
2727
{
2828
name: "instagram",
29-
icon: "/socials/instagram.png",
29+
icon: "socials/instagram.png",
3030
link: "https://www.instagram.com/python.pizza/",
3131
},
3232
];

src/sections/hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const Hero = () => (
3131
flexDirection: "column",
3232
alignItems: "center",
3333
justifyContent: "center",
34-
background: `url(${process.env.BASE_PATH}/background.jpg) center / cover`,
34+
background: `url(background.jpg) center / cover`,
3535
minHeight: "100vh",
3636
position: "relative",
3737
pt: ["42rem", "20rem", "14rem"],

0 commit comments

Comments
 (0)