Initial commit

This commit is contained in:
2026-01-19 17:58:34 +02:00
commit 04b58427a9
19 changed files with 2211 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 AccelerateSection from './components/AccelerateSection';
import TeamAugmentation from './components/TeamAugmentation';
import CompanyLogos from './components/CompanyLogos';
import ServicesSection from './components/ServicesSection';
import CTASection from './components/CTASection';
import Newsletter from './components/Newsletter';
import Footer from './components/Footer';
function App() {
return (
<div className="App">
<Header />
<Hero />
<AccelerateSection />
<TeamAugmentation />
<CompanyLogos />
<ServicesSection />
<CTASection />
<Newsletter />
<Footer />
</div>
);
}
export default App;