Initial commit

This commit is contained in:
2026-01-15 13:09:05 +02:00
commit 97cf11794c
18 changed files with 2239 additions and 0 deletions

26
src/App.js Normal file
View File

@@ -0,0 +1,26 @@
import React from 'react';
import Header from './components/Header';
import Hero from './components/Hero';
import JobSearch from './components/JobSearch';
import TeamAugmentation from './components/TeamAugmentation';
import CompanyLogos from './components/CompanyLogos';
import AdditionalSupport from './components/AdditionalSupport';
import Newsletter from './components/Newsletter';
import Footer from './components/Footer';
function App() {
return (
<div className="min-h-screen bg-white">
<Header />
<Hero />
<JobSearch />
<TeamAugmentation />
<CompanyLogos />
<AdditionalSupport />
<Newsletter />
<Footer />
</div>
);
}
export default App;