36 lines
882 B
TypeScript
36 lines
882 B
TypeScript
![]() |
import React from 'react';
|
||
|
import Header from './HeaderLanding';
|
||
|
import Footer from './FooterLanding';
|
||
|
import Hero from './Hero';
|
||
|
import Questions from './Questions';
|
||
|
import Counter from './Counter';
|
||
|
import Blog from './Blog';
|
||
|
import HowItWorks from './HowItWorks';
|
||
|
import BusinessPluses from './BusinessPluses';
|
||
|
import HowToUse from './HowToUse';
|
||
|
import WhatTheySay from './WhatTheySay';
|
||
|
import StartWithTemplates from './StartWithTemplates';
|
||
|
import WhatTheFeatures from './WhatTheFeatures';
|
||
|
|
||
|
export default function Landing() {
|
||
|
return (
|
||
|
<>
|
||
|
<Header/>
|
||
|
<Hero/>
|
||
|
<Counter/>
|
||
|
<HowItWorks/>
|
||
|
<BusinessPluses/>
|
||
|
<HowToUse/>
|
||
|
<WhatTheySay/>
|
||
|
<StartWithTemplates/>
|
||
|
<WhatTheFeatures/>
|
||
|
<Blog/>
|
||
|
<Questions/>
|
||
|
<Footer />
|
||
|
</>
|
||
|
|
||
|
)
|
||
|
}
|
||
|
|
||
|
|