-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (132 loc) · 6.13 KB
/
index.html
File metadata and controls
137 lines (132 loc) · 6.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Zenith App Landing Page - Brutalism Style</title>
<meta name="description" content="Zenith: minimalist productivity app to help you conquer distractions and master your workflow.">
<!-- Open Graph for richer sharing -->
<meta property="og:title" content="Zenith Productivity App">
<meta property="og:description" content="Find Your Focus. Achieve Your Goals with Zenith.">
<!-- Preconnect for Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Space+Mono&display=swap" rel="stylesheet">
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Your custom CSS -->
<link rel="stylesheet" href="styles(2).css">
<!-- FontAwesome kit -->
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous" defer></script>
<!-- Bootstrap 5 JS Bundle (no jQuery) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" defer></script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<span class="logo-icon" aria-hidden="true"></span> Zenith
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="toggler-icon">☰</span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav me-auto ms-5">
<li class="nav-item"><a class="nav-link" href="#features">Features</a></li>
<li class="nav-item"><a class="nav-link" href="#pricing">Pricing</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About Us</a></li>
</ul>
<div class="d-flex align-items-center">
<a href="#signup" class="btn btn-signup">Sign Up Free</a>
<button id="theme-toggle" class="btn btn-signup">🌙/☀️</button>
</div>
</div>
</div>
</nav>
<!-- Hero -->
<section class="hero" role="banner" aria-label="Zenith Productivity App Introduction">
<h1>Find Your Focus. Achieve Your Goals.</h1>
<p>Zenith is the minimalist productivity app designed to help you conquer distractions and master your workflow.</p>
<a href="#signup" class="btn btn-primary">Start Your Free Trial</a>
</section>
<!-- Features -->
<section class="features" id="features" aria-label="Features of Zenith app">
<div class="container">
<div class="row">
<div class="col-md-4 pre-fade">
<i class="fas fa-stopwatch feature-icon" aria-hidden="true"></i>
<h3 class="feature-title">Focus Timer</h3>
<p class="feature-desc">Use our customizable Pomodoro timer to work in focused sprints.</p>
</div>
<div class="col-md-4 pre-fade">
<i class="fas fa-clipboard-list feature-icon" aria-hidden="true"></i>
<h3 class="feature-title">Task Management</h3>
<p class="feature-desc">Organize your to-do list with our intuitive drag-and-drop interface.</p>
</div>
<div class="col-md-4 pre-fade">
<i class="fas fa-bell-slash feature-icon" aria-hidden="true"></i>
<h3 class="feature-title">Distraction Blocker</h3>
<p class="feature-desc">Block distracting websites and apps to stay in your flow state.</p>
</div>
</div>
</div>
</section>
<!-- (Optional) Pricing or About Us sections can be slotted here -->
<!-- Footer -->
<footer class="footer" role="contentinfo">
<div class="container">
<div class="row justify-content-between align-items-center flex-column flex-md-row">
<div class="footer-column footer-logo d-flex align-items-center mb-3 mb-md-0">
<span class="logo-icon" aria-hidden="true"></span>
<span>© 2025 Zenith. All rights reserved.</span>
</div>
<div class="footer-column text-center mb-3 mb-md-0">
<a href="#" tabindex="0">Contact</a> |
<a href="#" tabindex="0">Privacy Policy</a> |
<a href="#" tabindex="0">Terms of Service</a>
</div>
<div class="footer-column social-icons d-flex justify-content-center justify-content-md-end">
<a href="#" aria-label="Twitter" tabindex="0"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Instagram" tabindex="0"><i class="fab fa-instagram"></i></a>
<a href="#" aria-label="LinkedIn" tabindex="0"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
</footer>
<!-- Inline JS: scroll effect, theme toggle, intersection observer for reveal -->
<script>
// Navbar scroll effect
window.addEventListener('scroll', () => {
const navbar = document.querySelector('.navbar');
if (window.scrollY > 50) navbar.classList.add('scrolled');
else navbar.classList.remove('scrolled');
});
// Dark mode toggle
document.addEventListener('DOMContentLoaded', () => {
const toggleBtn = document.getElementById('theme-toggle');
toggleBtn.addEventListener('click', () => {
if (document.documentElement.getAttribute('data-theme') === 'dark') {
document.documentElement.removeAttribute('data-theme');
} else {
document.documentElement.setAttribute('data-theme', 'dark');
}
});
// Intersection Observer for feature reveal
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('fade-in');
observer.unobserve(entry.target);
}
});
}, { threshold: 0.3 });
document.querySelectorAll('.features .pre-fade').forEach(el => {
observer.observe(el);
});
});
</script>
</body>
</html>