diff --git a/index.html b/index.html index b1da6bc37924ec072d190d2c7f103c3726286e86..1add2168542cf437a2558a2b0a1e537557b0a8ef 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ <html lang="en"> <head> <meta charset="UTF-8" /> - <link rel="icon" type="image/svg+xml" href="/assets/clock.svg" /> + <link rel="icon" type="image/svg+xml" href="assets/clock.svg" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="preconnect" href="https://fonts.googleapis.com" /> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> diff --git a/src/components/ErrorMessage.jsx b/src/components/ErrorMessage.jsx index aae1df1a17c0623d2cf0e0e51eb6ff7ec15df407..bc9c4d64d615536724f2adddafe113e1039b0c4b 100644 --- a/src/components/ErrorMessage.jsx +++ b/src/components/ErrorMessage.jsx @@ -30,7 +30,7 @@ export const ErrorMessage = () => { <Box component="img" - src="/assets/illustrations/notfound.svg" + src="assets/illustrations/notfound.svg" sx={{ mx: "auto", height: 260, diff --git a/src/pages/HomePage/HomePage.jsx b/src/pages/HomePage/HomePage.jsx index 114a6172a956ff37c9ef2da31a0259de31cfe961..0aa16fbda26af1985d1f1d40a3044b5b54f0023f 100644 --- a/src/pages/HomePage/HomePage.jsx +++ b/src/pages/HomePage/HomePage.jsx @@ -91,7 +91,7 @@ export const HomePage = () => { <> <div className="relative w-full lg:w-[40%] h-[30%] lg:h-full flex flex-col items-center justify-center px-6 lg:px-8"> <img - src="/assets/aistikattila.jpeg" + src="assets/aistikattila.jpeg" className="absolute blur-sm object-cover h-full w-full -z-10" /> <Paper className="flex flex-col items-center bg-[#000] opacity-80 p-3 md:p-4 rounded-lg"> diff --git a/src/pages/NotFound/NotFoundPage.jsx b/src/pages/NotFound/NotFoundPage.jsx index 3fde06767f649fc0e160797ed2079b6747fa03e0..19b82730870cc16c33748ad914e0cede44c9d41b 100644 --- a/src/pages/NotFound/NotFoundPage.jsx +++ b/src/pages/NotFound/NotFoundPage.jsx @@ -40,7 +40,7 @@ export const NotFoundPage = () => { <Box component="img" - src="/assets/illustrations/notfound.svg" + src="assets/illustrations/notfound.svg" sx={{ mx: "auto", height: 260,