2022-12-18 22:21:38 +00:00
|
|
|
import { Footer, MobileFooter } from "../components/styles/generic"
|
2022-12-03 20:02:13 +00:00
|
|
|
|
2022-12-15 20:23:34 +00:00
|
|
|
const PageFooter = () => {
|
2022-12-03 20:02:13 +00:00
|
|
|
return (
|
2022-12-15 20:23:34 +00:00
|
|
|
<Footer>
|
2022-12-03 20:02:13 +00:00
|
|
|
Built using Next.js
|
2022-12-15 20:23:34 +00:00
|
|
|
</Footer>
|
2022-12-03 20:02:13 +00:00
|
|
|
);
|
|
|
|
}
|
2022-12-18 22:21:38 +00:00
|
|
|
|
2022-12-19 20:03:08 +00:00
|
|
|
export const NavMenuFooter = () => {
|
2022-12-18 22:21:38 +00:00
|
|
|
return (
|
|
|
|
<MobileFooter>
|
|
|
|
Built using Next.js
|
|
|
|
</MobileFooter>
|
|
|
|
);
|
|
|
|
}
|
2022-12-03 20:02:13 +00:00
|
|
|
|
2022-12-15 20:23:34 +00:00
|
|
|
export default PageFooter;
|