Desktop Hero v1

This commit is contained in:
2024-04-11 17:36:17 +01:00
parent df3fd2fb4d
commit 0e451976d9
19 changed files with 90 additions and 87 deletions
+2
View File
@@ -1,10 +1,12 @@
import React from "react";
import Navbar from "../Components/Navbar/Navbar";
import Hero from "../Components/Hero/Hero";
const Home = () => {
return (
<div>
<Navbar />
<Hero />
</div>
);
};