22 lines
676 B
TypeScript
22 lines
676 B
TypeScript
import React from 'react';
|
|
import NavbarStyleApple from './components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
import HeroBillboard from './components/sections/hero/HeroBillboard';
|
|
import FeatureCardOne from './components/sections/feature/FeatureCardOne';
|
|
import { Testimonial1 } from './components/sections/testimonial/Testimonial1';
|
|
import CtaOne from './components/sections/cta/CtaOne';
|
|
import FooterOne from './components/footer/FooterOne';
|
|
|
|
function App() {
|
|
return (
|
|
<div className="App">
|
|
<NavbarStyleApple />
|
|
<HeroBillboard />
|
|
<FeatureCardOne />
|
|
<Testimonial1 />
|
|
<CtaOne />
|
|
<FooterOne />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App; |