Files
social-ojo.org/components/Footer.js
2022-05-12 20:32:34 +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>
</>
);
}