SANDRAMSC's picture
Frontend Template initialized
ca314ba
raw
history blame contribute delete
No virus
497 Bytes
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 "./App.css";
function App() {
return (
<>
<Navbar />
<Hero />
<HowItWorks />
<Features />
<Footer />
<ScrollToTop />
</>
);
}
export default App;