diff options
| author | real-zephex <[email protected]> | 2024-04-10 01:19:20 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-10 01:19:20 +0530 |
| commit | e5935c15af0375240fa7c711dc99101fa48048be (patch) | |
| tree | e1807c8552c25b0f2f10d55dce59725606bb4b66 /src/app/components/footer/page.jsx | |
| parent | prolly the last update to dramalama. (diff) | |
| download | dramalama-e5935c15af0375240fa7c711dc99101fa48048be.tar.xz dramalama-e5935c15af0375240fa7c711dc99101fa48048be.zip | |
UI changes
Diffstat (limited to 'src/app/components/footer/page.jsx')
| -rw-r--r-- | src/app/components/footer/page.jsx | 36 |
1 files changed, 5 insertions, 31 deletions
diff --git a/src/app/components/footer/page.jsx b/src/app/components/footer/page.jsx index ea763a6..08a7c73 100644 --- a/src/app/components/footer/page.jsx +++ b/src/app/components/footer/page.jsx @@ -1,37 +1,11 @@ -import styles from "./footer.module.css"; +import styles from "../../page.module.css"; export default async function Footer() { return ( - <div className={styles.footer}> - <div className={styles.FooterLeftContainer}> - <a - href="https://stats.uptimerobot.com/Fxp7SE5Ll3" - target="_new" - > - Status - </a> - <a - href="https://github.com/real-zephex/Dramalama" - target="_new" - > - Github - </a> + <main className={styles.main}> + <div className={styles.footer}> + <p>Made with :3 by zephex</p> </div> - - <div className={styles.FooterRightContainer}> - <a - style={{ color: "#EBCB8B" }} - href="https://dramalama.vercel.app" - > - Vercel - </a> - <a - style={{ color: " #A3BE8C" }} - href="https://dramalama.netlify.app" - > - Netlify - </a> - </div> - </div> + </main> ); } |