-
-
Notifications
You must be signed in to change notification settings - Fork 391
Expand file tree
/
Copy path+Page.tsx
More file actions
28 lines (23 loc) · 684 Bytes
/
+Page.tsx
File metadata and controls
28 lines (23 loc) · 684 Bytes
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 React from 'react'
import FlexibilitySection from './sections/Flexibility'
import IntroSection from './sections/Intro'
import StabilitySection from './sections/Stability'
import DxSection from './sections/Dx'
import useScrollSmoother from './hooks/useScrollSmoother'
import './tailwind.css'
import Footer from './sections/Footer'
const LandingPage = () => {
// useScrollSmoother()
return (
<>
<div id="tailwind-portal" data-theme="vike" className="bg-base-300 overflow-x-clip">
<IntroSection />
<FlexibilitySection />
<StabilitySection />
<DxSection />
<Footer />
</div>
</>
)
}
export default LandingPage