Files
social-ojo.org/components/Footer.js
2022-05-12 21:07:22 +08:00

16 lines
295 B
JavaScript

import Link from "next/link";
import styles from '../styles/Footer.module.css';
export default function Footer() {
return (
<>
<footer className={styles.footer}>
<small>
©2022-2023 Social OjO. All Rights Reserved.
</small>
</footer>
</>
);
}