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