|
| 1 | +import { Background } from "@/components/background" |
1 | 2 | import { Nav } from "@/components/nav"
|
2 | 3 | import { PromptAnimation } from "@/components/prompt-animation"
|
3 | 4 |
|
4 | 5 | export default function Home() {
|
5 | 6 | return (
|
6 | 7 | <div className="h-screen w-screen">
|
7 |
| - <div className="w-[800px] h-[800px] rounded-full bg-blue-200 absolute z-1 -top-10 -left-10"></div> |
8 |
| - <div className="w-[800px] h-[800px] rounded-full bg-purple-400 absolute z-1 right-10 top-10"></div> |
9 |
| - <div className="w-[1000px] h-[1000px] rounded-full bg-blue-400 absolute z-1 right-20 top-56"></div> |
10 |
| - <div className="w-[80%] h-[300px] rounded-full bg-gray-400 absolute z-1 -top-20 left-[10%]"></div> |
11 |
| - <div className="w-[800px] h-[800px] rounded-full bg-teal-200 absolute z-1 -left-[10%] -bottom-[20%]"></div> |
12 |
| - <div className="fixed z-10 top-0 left-0 right-0 bottom-0 bg-white backdrop-blur-3xl bg-white/80 overflow-y-auto"> |
| 8 | + <Background /> |
| 9 | + <div className="fixed z-10 top-0 left-0 right-0 bottom-0 backdrop-blur-3xl bg-white/80 overflow-y-auto"> |
13 | 10 | <Nav />
|
14 | 11 |
|
15 | 12 | <section className="flex flex-col items-center justify-center mt-16">
|
16 | 13 | <span className="text-gray-600">
|
17 | 14 | Learn by Learning & Teach by Teaching
|
18 | 15 | </span>
|
19 |
| - <h1 className="text-[5rem] font-thin -mt-3 sm:text-[5rem] md:text-[7rem] lg:text-[8rem]"> |
| 16 | + <h1 className="text-[5rem] font-thin -mt-3 sm:text-[5rem] md:text-[7rem] lg:text-[8rem] text-center"> |
20 | 17 | <span className="font-normal">Study</span> Drift
|
21 | 18 | </h1>
|
22 | 19 |
|
23 | 20 | <PromptAnimation />
|
24 | 21 | </section>
|
| 22 | + |
| 23 | + <section className="mt-16 py-36"> |
| 24 | + <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| 25 | + <div className="text-center mb-12"> |
| 26 | + <h2 className="text-3xl font-bold text-gray-800"> |
| 27 | + Why Study Drift? |
| 28 | + </h2> |
| 29 | + <p className="text-lg text-gray-600"> |
| 30 | + Explore the powerful features designed to revolutionize online |
| 31 | + learning and teaching. |
| 32 | + </p> |
| 33 | + </div> |
| 34 | + <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| 35 | + <div className="p-6 bg-white rounded-lg shadow"> |
| 36 | + <h3 className="text-xl font-semibold text-gray-800 mb-3"> |
| 37 | + AI-Driven Course Creation |
| 38 | + </h3> |
| 39 | + <p className="text-gray-600"> |
| 40 | + Automatically generate courses and quizzes using our |
| 41 | + AI-powered tools, saving educators hours of manual work. |
| 42 | + </p> |
| 43 | + </div> |
| 44 | + <div className="p-6 bg-white rounded-lg shadow"> |
| 45 | + <h3 className="text-xl font-semibold text-gray-800 mb-3"> |
| 46 | + Customizable Content Management |
| 47 | + </h3> |
| 48 | + <p className="text-gray-600"> |
| 49 | + Easily manage lessons, modules, and resources to create a |
| 50 | + seamless learning experience for students. |
| 51 | + </p> |
| 52 | + </div> |
| 53 | + <div className="p-6 bg-white rounded-lg shadow"> |
| 54 | + <h3 className="text-xl font-semibold text-gray-800 mb-3"> |
| 55 | + Analytics and Reporting |
| 56 | + </h3> |
| 57 | + <p className="text-gray-600"> |
| 58 | + Track student progress, identify trends, and improve your |
| 59 | + curriculum with our in-depth analytics tools. |
| 60 | + </p> |
| 61 | + </div> |
| 62 | + </div> |
| 63 | + </div> |
| 64 | + </section> |
25 | 65 | </div>
|
26 | 66 | </div>
|
27 | 67 | )
|
|
0 commit comments