19 lines
331 B
TypeScript
19 lines
331 B
TypeScript
import { Footer, MobileFooter } from "../components/styles/generic"
|
|
|
|
const PageFooter = () => {
|
|
return (
|
|
<Footer>
|
|
Built using Next.js
|
|
</Footer>
|
|
);
|
|
}
|
|
|
|
const NavMenuFooter = () => {
|
|
return (
|
|
<MobileFooter>
|
|
Built using Next.js
|
|
</MobileFooter>
|
|
);
|
|
}
|
|
|
|
export default PageFooter; |