-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
170 lines (152 loc) Β· 7.17 KB
/
Copy pathindex.html
File metadata and controls
170 lines (152 loc) Β· 7.17 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="StudySphere is a premium student collaboration and productivity platform featuring note sharing, study groups, assignment tracking, resources library, and forums.">
<meta name="keywords" content="student productivity, note sharing, study groups, assignment tracker, academic resources, student forum, collaboration platform">
<meta name="author" content="StudySphere Team">
<!-- Open Graph Meta Tags for Social Sharing -->
<meta property="og:title" content="StudySphere - Student Collaboration & Productivity Platform">
<meta property="og:description" content="Streamline your study routine, collaborate with peers, share notes, track assignments, and ask questions in forums.">
<meta property="og:type" content="website">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg">
<link rel="shortcut icon" href="assets/favicon.svg">
<title>StudySphere - Student Collaboration & Productivity Platform</title>
<!-- Core & Pages CSS -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/pages.css">
</head>
<body>
<!-- Main Application Wrapper -->
<div class="app-container">
<!-- Sidebar Navigation Drawer -->
<aside class="sidebar" id="sidebar">
<div class="sidebar-logo">
<div class="logo-icon">S</div>
<div class="logo-text">StudySphere</div>
</div>
<nav class="sidebar-nav">
<a href="#dashboard" class="nav-item active" id="nav-dashboard">
<i data-lucide="layout-dashboard"></i>
<span>Dashboard</span>
</a>
<a href="#notes" class="nav-item" id="nav-notes">
<i data-lucide="file-text"></i>
<span>Note Sharing</span>
</a>
<a href="#groups" class="nav-item" id="nav-groups">
<i data-lucide="users"></i>
<span>Study Groups</span>
</a>
<a href="#assignments" class="nav-item" id="nav-assignments">
<i data-lucide="check-square"></i>
<span>Assignments</span>
</a>
<a href="#resources" class="nav-item" id="nav-resources">
<i data-lucide="library"></i>
<span>Resource Library</span>
</a>
<a href="#forum" class="nav-item" id="nav-forum">
<i data-lucide="message-square"></i>
<span>Discussion Forum</span>
</a>
<a href="#timer" class="nav-item" id="nav-timer">
<i data-lucide="timer"></i>
<span>Pomodoro Timer</span>
</a>
<a href="#flashcards" class="nav-item" id="nav-flashcards">
<i data-lucide="layers"></i>
<span>Flashcards</span>
</a>
<a href="#calendar" class="nav-item" id="nav-calendar">
<i data-lucide="calendar-days"></i>
<span>Study Calendar</span>
</a>
<a href="#profile" class="nav-item" id="nav-profile">
<i data-lucide="user"></i>
<span>Profile</span>
</a>
</nav>
<!-- Sidebar Footer with Mini Profile -->
<div class="sidebar-footer">
<div class="user-mini-profile" id="mini-profile-container" title="View Profile">
<!-- Loaded dynamically via js/ui.js -->
</div>
</div>
</aside>
<!-- Main Content Area -->
<main class="main-content">
<!-- Header / Top Navigation Bar -->
<header class="top-bar">
<button class="hamburger-btn" id="hamburger-btn" aria-label="Toggle Sidebar Menu">
<i data-lucide="menu"></i>
</button>
<!-- Active Page Title -->
<div class="navbar-page-title" id="navbar-page-title">
<i data-lucide="layout-dashboard" id="navbar-page-icon"></i>
<span id="navbar-page-name">Dashboard</span>
</div>
<!-- Global Search Widget -->
<div class="search-bar-container">
<i data-lucide="search" class="search-icon"></i>
<input type="text" id="global-search" class="search-input" placeholder="Search across active tab...">
</div>
<!-- Utility Bar Actions -->
<div class="top-bar-actions">
<!-- Light / Dark Mode Toggle Button -->
<button class="theme-toggle-btn" id="theme-toggle" aria-label="Toggle Dark/Light Mode" title="Toggle Theme">
<i data-lucide="sun"></i>
</button>
<!-- Approaching Deadlines Notification Button -->
<button class="notifications-btn" id="notifications-btn" aria-label="View notifications" title="Approaching Deadlines">
<i data-lucide="bell"></i>
<span class="notification-badge" id="notif-badge" style="display: none;">0</span>
</button>
</div>
</header>
<!-- Dynamic Router View Container -->
<div class="page-container" id="page-container">
<!-- Injected dynamically by js/pages.js -->
</div>
</main>
</div>
<!-- Site Footer -->
<footer class="site-footer">
<div class="footer-content">
<div class="footer-brand">
<div class="footer-logo">S</div>
<span class="footer-name">StudySphere</span>
</div>
<p class="footer-tagline">Your academic productivity companion.</p>
<div class="footer-links">
<a href="#dashboard">Dashboard</a>
<a href="#notes">Notes</a>
<a href="#groups">Study Groups</a>
<a href="#assignments">Assignments</a>
<a href="#forum">Forum</a>
</div>
<p class="footer-copy">© 2026 StudySphere. Open source under MIT License.</p>
</div>
</footer>
<!-- Toast container for notification prompts -->
<div class="toast-container" id="global-toast-container"></div>
<!-- Lucide Icons CDN -->
<script src="https://unpkg.com/lucide@latest"></script>
<!-- Marked.js for Markdown Rendering -->
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script>
// Fallback in case CDN fails
window.addEventListener('error', function(e) {
if (e.target.src && e.target.src.indexOf('lucide') !== -1) {
console.warn('Lucide CDN failed to load. Falling back to text placeholders.');
}
}, true);
</script>
<!-- Application Scripts -->
<script src="js/db.js"></script>
<script src="js/pages.js"></script>
<script src="js/ui.js"></script>
</body>
</html>