aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/app/components/footer/footer.module.css2
-rw-r--r--src/app/globals.css2
-rw-r--r--src/app/manga/[title]/[id]/[read]/page.jsx2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/app/components/footer/footer.module.css b/src/app/components/footer/footer.module.css
index 8547873..75c9432 100644
--- a/src/app/components/footer/footer.module.css
+++ b/src/app/components/footer/footer.module.css
@@ -3,7 +3,7 @@
left: 0;
bottom: 0;
width: 100%;
- background-color: #161616;
+ background-color: #1a1a1a;
color: white;
text-align: center;
}
diff --git a/src/app/globals.css b/src/app/globals.css
index 837ff21..8690bc9 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -11,7 +11,7 @@
body {
margin: 0px;
padding: 0px;
- background-color: black;
+ background-color: #1f1f1f;
}
body::-webkit-scrollbar {
diff --git a/src/app/manga/[title]/[id]/[read]/page.jsx b/src/app/manga/[title]/[id]/[read]/page.jsx
index e584ee2..127a6b9 100644
--- a/src/app/manga/[title]/[id]/[read]/page.jsx
+++ b/src/app/manga/[title]/[id]/[read]/page.jsx
@@ -31,7 +31,7 @@ export default async function Read({ params }) {
images.map((item, index) => (
<div className={styles.Image} key={index}>
<Image
- src={`https://image-proxy-4xuu.onrender.com/image-proxy?url=${item}`}
+ src={item}
key={index}
alt="Pages"
width={800}