File size: 4,953 Bytes
33b5019 7fa209a 33b5019 7fa209a 33b5019 6110ac3 33b5019 6110ac3 33b5019 6110ac3 33b5019 6110ac3 33b5019 6110ac3 33b5019 ed666cb 33b5019 |
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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StudyMate - ืขืืืจ ืืืืืื ืืื</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<custom-navbar></custom-navbar>
<main class="container">
<section class="hero">
<h1>StudyMate - ืืคืืืช ืืืืืื ืืืืื ืืืชืจ</h1>
<p>ืืขืื ืืืืจื ืืืืื ืืงืื ืกืืืืืื, ืืืื ืื ืืืจืืืกืืืช ืืืืื - ืืื ืืืืืืื!</p>
</section>
<div class="study-tools">
<div class="tool-card">
<h2><i class="fas fa-file-upload"></i> ืืฆืืจืช ืคืจืืืงื ืืืฉ</h2>
<div class="project-type-selector">
<button class="project-type active" data-type="exam">
<i class="fas fa-file-alt"></i> ืืืื
</button>
<button class="project-type" data-type="assignment">
<i class="fas fa-tasks"></i> ืขืืืื
</button>
<button class="project-type" data-type="presentation">
<i class="fas fa-chalkboard-teacher"></i> ืืฆืืช
</button>
</div>
<input type="text" id="projectName" placeholder="ืฉื ืืคืจืืืงื (ืืืฉื: ืืืื ืืชื ืดื)">
<div class="upload-area" id="dropZone">
<input type="file" id="fileInput" multiple accept=".pdf,.docx,.txt,.ppt,.pptx">
<label for="fileInput" class="upload-btn">
<i class="fas fa-cloud-upload-alt"></i> ืืจืืจ ืงืืฆืื ืื ืืืฅ ืืืืืจื
</label>
<div class="file-list" id="fileList"></div>
</div>
<div class="output-options">
<h3>ืื ืชืจืฆื ืืงืื?</h3>
<div class="options-grid">
<label class="option-checkbox">
<input type="checkbox" name="output" value="summary" checked>
<span>ืกืืืืืื</span>
</label>
<label class="option-checkbox">
<input type="checkbox" name="output" value="flashcards" checked>
<span>ืืจืืืกืืืช</span>
</label>
<label class="option-checkbox">
<input type="checkbox" name="output" value="quiz">
<span>ืืืื ืชืจืืื</span>
</label>
<label class="option-checkbox">
<input type="checkbox" name="output" value="presentation">
<span>ืืฆืืช</span>
</label>
</div>
</div>
<button class="btn primary" id="processBtn">
<i class="fas fa-magic"></i> ืฆืืจ ืคืจืืืงื
</button>
</div>
<div class="tool-card">
<h2><i class="fas fa-book"></i> ืืืืจื ืืืืืื ืฉืื</h2>
<div class="tabs">
<button class="tab-btn active" data-tab="notes">ืกืืืืืื</button>
<button class="tab-btn" data-tab="flashcards">ืืจืืืกืืืช</button>
<button class="tab-btn" data-tab="exams">ืืืื ืื</button>
</div>
<div class="tab-content active" id="notes">
<div class="empty-state">
<i class="fas fa-book-open"></i>
<p>ืขืืืื ืืื ืกืืืืืื. ืืขืื ืงืืฆืื ืืื ืืืชืืื!</p>
</div>
</div>
<div class="tab-content" id="flashcards">
<div class="empty-state">
<i class="fas fa-layer-group"></i>
<p>ืขืืืื ืืื ืืจืืืกืืืช. ืืขืื ืงืืฆืื ืืื ืืืชืืื!</p>
</div>
</div>
<div class="tab-content" id="exams">
<div class="empty-state">
<i class="fas fa-file-alt"></i>
<p>ืขืืืื ืืื ืืืื ืื. ืืขืื ืงืืฆืื ืืื ืืืชืืื!</p>
</div>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
</body>
</html> |