Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ <h1 class="site-title">StudyPlan</h1>
<footer class="site-footer">
<p>© 2026 StudyPlan. All rights reserved.</p>
<div class="footer-links">
<a href="/support-page/index.html#privacy">Privacy</a>
<a href="/support-page/index.html#terms">Terms</a>
<a href="/support-page/index.html#support">Support</a>
<a href="/support-page/privacy.html">Privacy</a>
<a href="/support-page/terms.html">Terms</a>
<a href="/support-page/support.html">Support</a>
</div>
</footer>

Expand Down
59 changes: 59 additions & 0 deletions support-page/privacy.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | StudyPlan</title>

<link rel="stylesheet" href="/support-page/support.css">

<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>

<body>

<header class="site-header">
<div class="header-left">
<img src="/logo.png" alt="Logo" class="logo">
<h1 class="site-title">StudyPlan</h1>
</div>

<nav class="header-nav">
<a href="/" class="nav-btn">Dashboard</a>
</nav>
</header>

<main class="support-wrapper">

<section class="card">
<h2>Privacy Policy</h2>

<p>
StudyPlan values your privacy. We securely store your tasks and academic planning data.
We do not sell your personal information to third parties.
</p>

<p>
Data submitted through AI extraction is processed only for task extraction purposes.
</p>

</section>

</main>

<footer class="site-footer">

<p>© 2026 StudyPlan. All rights reserved.</p>

<div class="footer-links">
<a href="/support-page/privacy.html">Privacy</a>
<a href="/support-page/terms.html">Terms</a>
<a href="/support-page/support.html">Support</a>
</div>

</footer>

<script src="/support-page/support.js"></script>

</body>
</html>
13 changes: 5 additions & 8 deletions support-page/index.html → support-page/support.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ <h1 class="site-title">StudyPlan</h1>

<nav class="header-nav">
<a href="/" class="nav-btn">Dashboard</a>
<a href="#" class="nav-btn">Tasks</a>
<a href="#" class="nav-btn">Calendar</a>
<a href="#" class="nav-btn">Settings</a>
</nav>
</header>

Expand All @@ -35,7 +32,7 @@ <h2>Support</h2>
</ul>
</section>

<section id="privacy" class="card">
<!-- <section id="privacy" class="card">
<h2>Privacy Policy</h2>
<p>
StudyPlan values your privacy. We securely store your tasks and academic planning data.
Expand All @@ -55,16 +52,16 @@ <h2>Terms & Conditions</h2>
<p>
StudyPlan is not liable for missed deadlines caused by incorrect user input or AI inference errors.
</p>
</section>
</section> -->

</main>

<footer class="site-footer">
<p>© 2026 StudyPlan. All rights reserved.</p>
<div class="footer-links">
<a href="#privacy">Privacy</a>
<a href="#terms">Terms</a>
<a href="#support">Support</a>
<a href="/support-page/privacy.html">Privacy</a>
<a href="/support-page/terms.html">Terms</a>
<a href="/support-page/support.html">Support</a>
</div>
</footer>

Expand Down
63 changes: 63 additions & 0 deletions support-page/terms.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Terms & Conditions | StudyPlan</title>

<link rel="stylesheet" href="/support-page/support.css">

<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>

<body>

<header class="site-header">

<div class="header-left">
<img src="/logo.png" alt="Logo" class="logo">
<h1 class="site-title">StudyPlan</h1>
</div>

<nav class="header-nav">
<a href="/" class="nav-btn">Dashboard</a>
</nav>

</header>

<main class="support-wrapper">

<section class="card">

<h2>Terms & Conditions</h2>

<p>
By using StudyPlan, you agree to use the service responsibly.
Users are responsible for verifying deadlines extracted by AI before submission.
</p>

<p>
StudyPlan is not liable for missed deadlines caused by incorrect user input or AI inference errors.
</p>

</section>

</main>

<footer class="site-footer">

<p>© 2026 StudyPlan. All rights reserved.</p>

<div class="footer-links">
<a href="/support-page/privacy.html">Privacy</a>
<a href="/support-page/terms.html">Terms</a>
<a href="/support-page/support.html">Support</a>
</div>

</footer>

<script src="/support-page/support.js"></script>

</body>
</html>