-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
57 lines (55 loc) · 3.2 KB
/
about.html
File metadata and controls
57 lines (55 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - OSHORead</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<style>
body { font-family: "Geist", sans-serif; }
</style>
</head>
<body class="bg-blue-50 text-gray-800">
<!-- Header -->
<header class="bg-white shadow-sm">
<div class="max-w-7xl mx-auto py-4 px-4 sm:px-6 lg:px-8">
<h1 class="text-2xl font-semibold text-blue-800">OSHORead</h1>
<nav class="mt-2 flex space-x-4">
<a href="index.html" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md">Home</a>
<a href="about.html" class="text-blue-600 font-medium px-3 py-2 rounded-md bg-blue-100">About</a>
<a href="privacy-policy.html" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md">Privacy Policy</a>
<a href="contact.html" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md">Contact</a>
</nav>
</div>
</header>
<!-- Main Content -->
<main class="max-w-3xl mx-auto py-8 px-4 sm:px-6 lg:px-8">
<section class="bg-white rounded-lg shadow-sm p-6">
<h2 class="text-3xl font-semibold text-blue-800 mb-4">About OSHORead</h2>
<p class="mb-4 text-gray-700">
OSHORead is a simple, modern platform crafted by <strong>Extreme_Krish</strong> to make Osho's Hindi and English discourses accessible through an advanced, user-friendly reader. Tired of navigating outdated and clunky Osho websites, I built this as a passion project to provide a seamless experience for enthusiasts.
</p>
<p class="mb-4 text-gray-700">
Our advanced reader offers a clean interface, fast navigation, and a distraction-free environment to dive deep into Osho's teachings. The site is non-profit, created purely for fun and to share knowledge. Content is sourced from publicly available discourses under fair use, and we’ll promptly comply with any takedown requests from rights owners.
</p>
<p class="text-gray-700">
Explore the source code on <a href="https://github.com/oshoapp/oshoapp.github.io" class="text-blue-600 hover:underline">GitHub</a> or join our community on <a href="https://discord.gg/EnQA8eRsbw" class="text-blue-600 hover:underline">Discord</a> to connect with like-minded users.
</p>
</section>
</main>
<!-- Footer -->
<footer class="bg-white shadow-sm mt-8 py-4">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center text-gray-600">
<p>OSHORead. Developed by Extreme_Krish. Non-profit project.</p>
<p class="mt-1">
<a href="mailto:krishvishwakarma83@gmail.com" class="text-blue-600 hover:underline">krishvishwakarma83@gmail.com</a> |
<a href="https://reddit.com/u/Alternative-Way9653" class="text-blue-600 hover:underline">u/Alternative-Way9653</a> |
<a href="https://discord.gg/EnQA8eRsbw" class="text-blue-600 hover:underline">Discord</a>
</p>
</div>
</footer>
</body>
</html>