main-site/components/footer.tsx

11 lines
201 B
TypeScript
Raw Normal View History

import { Footer } from "../components/styles/generic"
2022-12-03 20:02:13 +00:00
const PageFooter = () => {
2022-12-03 20:02:13 +00:00
return (
<Footer>
2022-12-03 20:02:13 +00:00
Built using Next.js
</Footer>
2022-12-03 20:02:13 +00:00
);
}
export default PageFooter;