Updated the Home.jsx

This commit is contained in:
Mathias Wagner 2023-07-09 00:25:42 +02:00
parent 910c23f83a
commit 56fb3df920
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -1,5 +1,7 @@
import Header from "@/pages/Home/sections/Header";
import Access from "@/pages/Home/sections/Access";
import Safety from "@/pages/Home/sections/Safety";
import Integrate from "@/pages/Home/sections/Integrate";
export const Home = () => {
return (
@ -8,6 +10,9 @@ export const Home = () => {
<Access />
<Safety />
<Integrate />
</>
)
}