Spaces:
Runtime error
Runtime error
File size: 614 Bytes
64c5e26 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
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;
|