Initial commit
This commit is contained in:
20
src/App.jsx
Normal file
20
src/App.jsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import Hero from './components/Hero';
|
||||
import Manifesto from './components/Manifesto';
|
||||
import CorePillars from './components/CorePillars';
|
||||
import Foundations from './components/Foundations';
|
||||
import ForYou from './components/ForYou';
|
||||
import CallToAction from './components/CallToAction';
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<div className="App">
|
||||
<Hero />
|
||||
<Manifesto />
|
||||
<Foundations />
|
||||
<ForYou />
|
||||
<CallToAction />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
Reference in New Issue
Block a user