-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.js
More file actions
36 lines (33 loc) · 1.21 KB
/
index.js
File metadata and controls
36 lines (33 loc) · 1.21 KB
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
29
30
31
32
33
34
35
36
import Ribbon from '@/components/common/Ribbon';
import { SectionDivider } from '@/components/common/layout';
import HeroSection from './sections/HeroSection';
import SocialSection from '../../common/SocialSection';
import IntroFeaturesSection from './sections/IntroFeaturesSection';
import WhyUsSection from './sections/WhyUsSection';
import MoreFeaturesSection from './sections/MoreFeaturesSection';
import FeaturesSection from './sections/FeaturesSection';
import CtaSection from './sections/CtaSection';
import SampleStorySection from './sections/SampleStorySection';
import config from '@/data/config';
import Head from 'next/head';
export default function HomePage(props) {
return (
<>
<Ribbon
onClick={() => window.open(config.links.githubProject)}
>
✨ CodeEdit is still growing, Some features are in development. Check the roadmap →
</Ribbon>
<HeroSection {...props} />
<IntroFeaturesSection />
{/* <SampleStorySection /> */}
{/* <SampleStorySection /> */}
{/* <WhyUsSection />
<FeaturesSection />
<MoreFeaturesSection />
<SectionDivider contained /> */}
{/* <SocialSection /> */}
{/* <CtaSection /> */}
</>
);
}