28 lines
777 B
JavaScript
28 lines
777 B
JavaScript
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; |