SANDRAMSC's picture
First commit for landing page - prior to Service error fix
64c5e26
raw
history blame
614 Bytes
import { About } from "./components/About";
import { Features } from "./components/Features";
import { Footer } from "./components/Footer";
import { Hero } from "./components/Hero";
import { HowItWorks } from "./components/HowItWorks";
import { Navbar } from "./components/Navbar";
import { ScrollToTop } from "./components/ScrollToTop";
import { Team } from "./components/Team";
import "./App.css";
function App() {
return (
<>
<Navbar />
<Hero />
<About />
<Features />
<HowItWorks />
<Team />
<Footer />
<ScrollToTop />
</>
);
}
export default App;