frontPanel/src/pages/Landing/Landing.tsx

36 lines
882 B
TypeScript
Raw Normal View History

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/>
<WhatTheySay/>
<StartWithTemplates/>
<WhatTheFeatures/>
<Blog/>
<Questions/>
<Footer />
</>
)
}