Add space between main elements of the site inside a container

This commit is contained in:
Niklas Birk 2022-09-17 15:50:58 +02:00
parent f759c2c246
commit ceb49f9d03

View File

@ -1,14 +1,19 @@
import Services from "./Services";
import Header from "./Header";
import Footer from "./Footer";
import {Container, Spacer} from "@nextui-org/react";
function SiteContentRoot() {
return (
<>
<Container>
<Spacer y={2}/>
<Header />
<Spacer y={1}/>
<Services />
<Spacer y={2}/>
<Footer />
</Container>
</>
);
}