Implemented the Access section into the Home.jsx

This commit is contained in:
Mathias Wagner 2023-07-08 19:35:05 +02:00
parent e7324f7fb7
commit b9487a024d
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -1,9 +1,13 @@
import Header from "@/pages/Home/sections/Header"; import Header from "@/pages/Home/sections/Header";
import Access from "@/pages/Home/sections/Access";
export const Home = () => { export const Home = () => {
return ( return (
<> <>
<Header/> <Header/>
<Access />
</> </>
) )
} }