⚒️ Add footer.

This commit is contained in:
pheralb 2022-06-26 16:35:05 +01:00
parent 2824dba25f
commit fd170340bf

View File

@ -2,12 +2,14 @@ import React from "react";
import { LayoutProps } from "@/interfaces/components"; import { LayoutProps } from "@/interfaces/components";
import { Container } from "@chakra-ui/react"; import { Container } from "@chakra-ui/react";
import Header from "./header"; import Header from "./header";
import Footer from "./footer";
const Index = ({ children }: LayoutProps) => { const Index = ({ children }: LayoutProps) => {
return ( return (
<> <>
<Header /> <Header />
<Container maxW="70%" mt="5">{children}</Container> <Container maxW="70%" mt="5">{children}</Container>
<Footer />
</> </>
); );
}; };