Initial commit

This commit is contained in:
Emre
2025-09-30 05:14:15 +03:00
commit 3446641911
35 changed files with 4166 additions and 0 deletions

20
src/App.jsx Normal file
View 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;