-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (74 loc) · 4.38 KB
/
index.html
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>scotti Home Page</title>
<link rel="icon" href="./images/scotti-logo.png" type="image/x-icon">
<link rel="stylesheet" href="./styles/main.css">
<link rel="stylesheet" href="./styles/homepage.css">
<script src="./scripts/teammembers.js" defer></script>
</head>
<body>
<header>
<div class="logo-title">
<img src="./images/scotti-logo.png" alt="scotti logo image">
<h1>scotti</h1>
</div>
<div class="navigation-tab">
<nav>
<a href="./index.html">Home</a>
<a href="./templates/upload.html">Summarizer</a>
<a href="./support.html">Support</a>
</nav>
</div>
</header>
<main>
<div class="hero">
<a id="join-button" src="./templates/upload.html">Try Now!</a>
<svg width="0" height="0">
<defs>
<clipPath id="waveClip" clipPathUnits="objectBoundingBox">
<path d="M0,0.5 C0.2,0.2 0.4,0.6 0.5,0.4 C0.6,0.2 0.8,0.6 1,0.4 L1,0 L0,0 Z"></path>
</clipPath>
</defs>
</svg>
<img src="./images/orange-hero.avif" alt="hero image which is an orange design">
</div>
<section id="mission-statement">
<div class="text-container">
<h2>Our Mission</h2>
<p>Our mission is to empower teachers and students by leveraging AI as a tool to enhance education, fostering an environment of critical thinking and thoughtful engagement. We aim to streamline the learning process, saving valuable time while encouraging deep exploration and understanding of complex ideas. By integrating innovative AI solutions, we strive to support educators and inspire learners, ensuring that technology serves as a companion in the educational journey, not a replacement for it.</p>
</div>
<div class="shape"></div>
</section>
<section id="product-info">
<div class="shape"></div>
<div class="text-container">
<h2>About Our Product</h2>
<p>Our platform is designed to revolutionize the educational experience by offering comprehensive solutions that support both teachers and students. Using cutting-edge Llama AI technology, we provide lecture and talk summarization, transforming lengthy lectures into concise, structured summaries that highlight essential concepts. This makes it easier for students to grasp and review material. Additionally, our dynamic quiz creation feature generates quizzes tailored to the summarized content, featuring both multiple-choice and short-answer questions. The AI assists in crafting thoughtful questions that encourage critical analysis and understanding.</p>
<p>Moreover, our platform helps teachers and students organize and structure their thoughts, promoting reflective engagement with complex topics and facilitating deeper discussions. Designed with educators in mind, our user-friendly interface is intuitive and customizable, allowing teachers to tailor content to fit their unique classroom needs. By combining efficiency and thoughtfulness, our product empowers educators to focus on what truly matters: fostering a love for learning and critical thinking skills in their students. Experience the future of education with our AI-driven solutions, where technology enhances learning without diminishing the human touch.</p>
</div>
</section>
<section id="team-members">
<div>
<img id="member-image" src="#" alt="#">
<section>
<h3 id="member-name">[Name]</h3>
<p id="member-description">Short Intro</p>
</section>
</div>
</section>
</main>
<footer>
<div>
<p>© scotti corporations - 2024</p>
</div>
<div class="socials">
<a href="#"><img src="./images/instagramlogo.png" alt="instagram link image"></a>
<a href="#"><img src="./images/twitterSlashXlogo.avif" alt="x link image"></a>
<a href="#"><img src="./images/facebookicon.png" alt="facebook link image"></a>
</div>
</footer>
</body>
</html>