2023-10-04 22:21:17 +00:00
|
|
|
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/>
|
2023-10-07 07:09:00 +00:00
|
|
|
{/*<WhatTheySay/>*/}
|
|
|
|
{/*<StartWithTemplates/>*/}
|
2023-10-04 22:21:17 +00:00
|
|
|
<WhatTheFeatures/>
|
2023-10-07 07:09:00 +00:00
|
|
|
{/*<Blog/>*/}
|
2023-10-04 22:21:17 +00:00
|
|
|
<Questions/>
|
|
|
|
<Footer />
|
|
|
|
</>
|
|
|
|
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|