File size: 678 Bytes
fcf8749
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import Navbar from './components/Navbar'
import Hero from './components/Hero'
import LogoBar from './components/LogoBar'
import Features from './components/Features'
import HowItWorks from './components/HowItWorks'
import LiveDemo from './components/LiveDemo'
import ApiSnippet from './components/ApiSnippet'
import Pricing from './components/Pricing'
import Footer from './components/Footer'

function App() {
  return (
    <div style={{ position: 'relative', zIndex: 1 }}>
      <Navbar />
      <Hero />
      <LogoBar />
      <Features />
      <HowItWorks />
      <ApiSnippet />
      <LiveDemo />
      <Pricing />
      <Footer />
    </div>
  )
}

export default App