aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/footer/page.jsx
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-31 17:32:48 +0530
committerreal-zephex <[email protected]>2024-03-31 17:32:48 +0530
commitd23e1274303c54b3d7fc8de77eea37bb8fdaeaa3 (patch)
treef91c136407e3a41d115750e9ae895727c5ddf9cc /src/app/components/footer/page.jsx
parentfix: looks like image proxy is must for viewing manga pages. we will have to... (diff)
downloaddramalama-d23e1274303c54b3d7fc8de77eea37bb8fdaeaa3.tar.xz
dramalama-d23e1274303c54b3d7fc8de77eea37bb8fdaeaa3.zip
fixes: minor css modifications, added basic information about the last read manga chapter (don't expect much out of it)
Diffstat (limited to 'src/app/components/footer/page.jsx')
-rw-r--r--src/app/components/footer/page.jsx13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/app/components/footer/page.jsx b/src/app/components/footer/page.jsx
index e3af4f9..1223f31 100644
--- a/src/app/components/footer/page.jsx
+++ b/src/app/components/footer/page.jsx
@@ -3,7 +3,7 @@ import styles from "./footer.module.css";
export default async function Footer() {
return (
<div className={styles.footer}>
- <p style={{ margin: 10 }}>
+ <div className={styles.FooterLeftContainer}>
<a
href="https://stats.uptimerobot.com/Fxp7SE5Ll3"
target="_new"
@@ -16,6 +16,9 @@ export default async function Footer() {
>
Github
</a>
+ </div>
+
+ <div className={styles.FooterRightContainer}>
<a
style={{ color: "#EBCB8B" }}
href="https://dramalama.vercel.app"
@@ -23,18 +26,12 @@ export default async function Footer() {
Vercel
</a>
<a
- style={{ color: "#BF616A" }}
- href="https://dramalama.netlify.app"
- >
- Netlify
- </a>
- <a
style={{ color: " #A3BE8C" }}
href="https://dramalama-1phg.onrender.com"
>
Render
</a>
- </p>
+ </div>
</div>
);
}