blob: 08a7c73f7e454e40dc4473ea84bf114dc3f0f2ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import styles from "../../page.module.css";
export default async function Footer() {
return (
<main className={styles.main}>
<div className={styles.footer}>
<p>Made with :3 by zephex</p>
</div>
</main>
);
}
|