diff options
Diffstat (limited to 'src/app/components/footer')
| -rw-r--r-- | src/app/components/footer/footer.module.css | 25 | ||||
| -rw-r--r-- | src/app/components/footer/page.jsx | 36 |
2 files changed, 5 insertions, 56 deletions
diff --git a/src/app/components/footer/footer.module.css b/src/app/components/footer/footer.module.css deleted file mode 100644 index 8c70b62..0000000 --- a/src/app/components/footer/footer.module.css +++ /dev/null @@ -1,25 +0,0 @@ -.footer { - position: fixed; - left: 0; - bottom: 0; - width: 100%; - background-color: #121212; - display: flex; - padding: 10px; - justify-content: space-between; - align-items: center; -} - -.FooterLeftContainer a { - color: #696880; - margin: 10px; -} - -.FooterRightContainer { - margin-right: 10px; -} - -.FooterRightContainer a { - margin: 10px; - text-decoration: none; -}
\ No newline at end of file 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> ); } |