-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
36 lines (34 loc) · 1.07 KB
/
index.js
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 Head from "next/head";
import { Inter } from "@next/font/google";
import { Box } from "@chakra-ui/react";
import Navbar from "../components/Navbar";
import Pricing from "../components/Pricing";
import Header from "../components/Header";
import Footer from "../components/Footer";
import Calltoaction from "../components/Home/Calltoaction";
import CourseSlider from "../components/Home/CourseSlider";
import AppShowcase from "../components/Home/AppShowcase";
import Features from "../components/Home/Features";
const inter = Inter({ subsets: ["latin"] });
export default function Home() {
return (
<>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
<Box>
<Navbar />
<Header />
<Calltoaction />
<CourseSlider />
<Features />
<AppShowcase />
<Pricing />
<Footer />
</Box>
</>
);
}