Initial commit

This commit is contained in:
2026-01-23 12:19:46 +02:00
commit d5432a0a4c
18 changed files with 2427 additions and 0 deletions

28
src/App.js Normal file
View File

@@ -0,0 +1,28 @@
import React from 'react';
import Header from './components/Header';
import Hero from './components/Hero';
import Features from './components/Features';
import CodeExamples from './components/CodeExamples';
import Platforms from './components/Platforms';
import News from './components/News';
import Community from './components/Community';
import Footer from './components/Footer';
function App() {
return (
<div className="min-h-screen bg-white">
<Header />
<main>
<Hero />
<Features />
<CodeExamples />
<Platforms />
<News />
<Community />
</main>
<Footer />
</div>
);
}
export default App;