-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpage.js
More file actions
46 lines (40 loc) · 1.28 KB
/
page.js
File metadata and controls
46 lines (40 loc) · 1.28 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
37
38
39
40
41
42
43
44
45
46
"use client";
import Image from 'next/image'
import React, { useState } from 'react';
import Link from 'next/link';
import styles from "./style";
import Navbar from "./components/Navbar";
import Hero from "./components/Hero";
import Concept from "./components/Concept";
import Emotion from "./components/Emotion";
import Interview from "./components/Interview";
import Teaching from "./components/Teaching";
import Pitch from "./components/Pitch";
import Testimony from "./components/Testimony";
export default function Home() {
const [inputValue, setInputValue] = useState('Help a student understand AI double descent.');
return (
<div className="bg-primary w-full overflow-hidden">
<div className={`${styles.paddingX} ${styles.flexCenter}`}>
<div className={`${styles.boxWidth}`}>
<Navbar />
</div>
</div>
<div className={`bg-primary ${styles.flexStart}`}>
<div className={`${styles.boxWidth}`}>
<Hero />
</div>
</div>
<div className={`bg-primary ${styles.paddingX} ${styles.flexCenter}`}>
<div className={`${styles.boxWidth}`}>
<Concept />
<Teaching />
<Interview />
<Pitch />
<Emotion />
<Testimony />
</div>
</div>
</div>
);
}