Initial commit
This commit is contained in:
26
src/App.js
Normal file
26
src/App.js
Normal 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;
|
||||
Reference in New Issue
Block a user