Navbar added + backgroung gradient

This commit is contained in:
2024-04-11 00:25:18 +01:00
parent 387522e5a7
commit df3fd2fb4d
24 changed files with 1607 additions and 176 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from "react";
import Navbar from "../Components/Navbar/Navbar";
const Home = () => {
return (
<div>
<Navbar />
</div>
);
};
export default Home;