Final touches

This commit is contained in:
Fernando Videira
2024-06-09 22:05:56 +01:00
parent 601d5ac89d
commit 3cbf508664
9 changed files with 146 additions and 61 deletions
+3 -1
View File
@@ -1,8 +1,9 @@
import Navbar from "../Components/Pages/Navbar/Navbar";
import Navbar from "../Components/Navbar/Navbar";
import Hero from "../Components/Pages/Hero/Hero";
import Services from "../Components/Pages/Services/Services";
import ResultsPage from "../Components/Pages/Results/ResultsPage";
import ContactPage from "../Components/Pages/Contact/ContactPage";
import Footer from "../Components/Footer/Footer";
const Home = () => {
return (
@@ -18,6 +19,7 @@ const Home = () => {
<div id="Contact">
<ContactPage />
</div>
<Footer />
</div>
);
};