created card component and tours section

This commit is contained in:
Yusuf Ipek
2021-05-02 13:34:49 +03:00
parent 12ab9e618c
commit 741b44c5d1
8 changed files with 90 additions and 3 deletions
+2
View File
@@ -2,6 +2,7 @@ import "./App.scss";
import About from "./commons/about-section/about";
import Feature from "./commons/feature-section/feature";
import Header from "./commons/header/header.jsx";
import Tours from "./commons/tours-section/tours";
function App() {
return (
@@ -9,6 +10,7 @@ function App() {
<Header />
<About />
<Feature />
<Tours />
</div>
);
}