Upload files to "/"

This commit is contained in:
blackctac 2025-08-10 20:47:01 +00:00
parent 29a2ebfda9
commit d52922cb0a
3 changed files with 298 additions and 0 deletions

109
index.html Normal file
View file

@ -0,0 +1,109 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy11</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/animate.css@4.1.1/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="styles.css">
<meta content="Privacy11" property="og:title" />
<meta content="Privacy11 is a Windows Tweaking Tool that removes (almost) all of Microsoft's spyware. Download Now!" property="og:description" />
<meta content="" property="og:url" />
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top animate__animated animate__fadeInDown">
<div class="container-fluid">
<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="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="https://x.com/revivelinux">Twitter</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero text-center text-light d-flex flex-column justify-content-center align-items-center">
<h1 class="animate__animated animate__bounceInDown">Retrieve your privacy.</h1>
<p class="animate__animated animate__bounceInUp">Privacy11 is a Windows Tweaking tool that removes (almost) every single trace of Microsoft spyware from your Windows Installation.</p>
<a href="" class="btn btn-warning btn-lg animate__animated animate__zoomIn btn-effect" data-bs-toggle="modal" data-bs-target="#modal">Download Privacy11</a>
<p class="mt-1 animate__animated animate__fadeIn"> </p>
</section>
<!-- Cards -->
<section class="key-features py-5">
<div class="container text-center">
<h2 class="section-title animate__animated animate__fadeInUp">Why should you install Privacy11</h2>
<div class="row mt-5">
<!-- Feature 1 -->
<div class="col-md-4 mb-4 animate__animated animate__fadeInLeft">
<div class="feature-box">
<i class="fas fa-icons fa-3x feature-icon"></i>
<h4 class="feature-title mt-3">Works on Windows 10 & 11.</h4>
<p class="feature-text">Privacy11 can be installed on both Windows 10 and 11, Both LTSC and Regular editions.</p>
</div>
</div>
<!-- Feature 2 -->
<div class="col-md-4 mb-4 animate__animated animate__fadeInUp">
<div class="feature-box">
<i class="fas fa-tachometer fa-3x feature-icon"></i>
<h4 class="feature-title mt-3">Adds privacy to your Windows Installation.</h4>
<p class="feature-text"> Privacy11 disables (almost) any type telemetry found on regular and LTSC Windows, giving you the privacy you need, without Microsoft watching you all the time.
</p>
</div>
</div>
<!-- Feature 3 -->
<div class="col-md-4 mb-4 animate__animated animate__fadeInRight">
<div class="feature-box">
<i class="fas fa-tachometer-alt fa-3x feature-icon"></i>
<h4 class="feature-title mt-3">Easy and Automatic Installation.</h4>
<p class="feature-text">All you have to do is just download the installer, run it and confirm the installation! 3 easy simple steps anyone can do.
</p>
</div>
</div>
</div>
</div>
</section>
<div class="modal fade" id="modal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true" data-bs-theme="dark">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalLabel">Notice</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
Before installing Privacy11, please disable Windows Defender. Privacy11 contains no viruses, at all.
This project is in an alpha state and may break a few features of Windows (e.g: Creating user accounts thru the UWP settings app). I am not responsible for any damage done to your system by installing the alpha version of this tweaking tool, since you chose to install this.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary"><a style="text-decoration: none; color: white;" href="http://revivelinux.komaru-yml.xyz/privacy11_alpha.exe">Download (ALPHA)</a></button>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="text-center text-light py-4 animate__animated animate__fadeInUp">
<p>2025 Privacy11. All rights reserved.</p>
<p> Big thanks to <a href="https://youtube.com/@justwinstuff?si=sUmEsc1wTkOsbZQ8">WinStuff</a> for letting me use his website's <a href="https://github.com/AstroWin/astrowin.github.io">Source Code!</a></p>
<p> Need any help? Email me at pro_linux_nerd@disroot.org for any type of support.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"></script>
<script src="script.js"></script>
</body>
</html>

7
script.js Normal file
View file

@ -0,0 +1,7 @@
document.querySelectorAll('.feature-box').forEach((box) => {
box.classList.add('animate__animated', 'animate__fadeInUp');
});
document.querySelectorAll('.btn-effect').forEach((btn) => {
btn.classList.add('animate__animated', 'animate__pulse');
});

182
styles.css Normal file
View file

@ -0,0 +1,182 @@
/* Fonts and Global Styles */
body {
font-family: 'Roboto', sans-serif;
background-color: #0a0a0a;
color: #f5f5f5;
margin: 0;
padding: 0;
--sb-track-color: #232E33;
--sb-thumb-color: #4699ff;
--sb-size: 7px;
}
.navbar {
background-color: #1a1a1a;
padding: 1rem;
}
.navbar-brand {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 1.5rem;
color: #4699ff;
}
.nav-link {
font-family: 'Montserrat', sans-serif;
font-weight: 600;
margin-right: 1rem;
color: #ffffff !important;
}
.hero {
height: 100vh;
background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('res/bg.jpg') no-repeat center center/cover;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0 1rem;
}
.hero h1 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 3.5rem;
margin-bottom: 1rem;
background: linear-gradient(90deg, #4699ff, #6bbfff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero p {
font-family: 'Roboto', sans-serif;
font-size: 1.25rem;
margin-bottom: 2rem;
color: #dddddd;
}
.hero .btn {
padding: 0.75rem 1.5rem;
font-weight: 700;
font-size: 1.25rem;
background: linear-gradient(90deg, #4699ff, #6bbfff);
border: none;
color: #ffffff;
}
/* Key Features Section */
.key-features {
background-color: #0d0d0d;
color: #f5f5f5;
text-align: center;
}
.key-features .section-title {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 2.5rem;
background: linear-gradient(90deg, #4699ff, #6bbfff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.key-features .section-subtitle {
font-family: 'Roboto', sans-serif;
font-size: 1.2rem;
margin-bottom: 2rem;
color: #dddddd;
}
.feature-box {
background-color: #1a1a1a;
padding: 2rem;
border-radius: 10px;
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.feature-box:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(70, 153, 255, 0.2);
}
.feature-icon {
color: #4699ff;
transition: color 0.3s ease-in-out;
}
.feature-box:hover .feature-icon {
color: #ffffff;
}
.feature-title {
font-family: 'Montserrat', sans-serif;
font-weight: 600;
font-size: 1.5rem;
}
.feature-text {
font-family: 'Roboto', sans-serif;
font-size: 1rem;
margin-top: 1rem;
color: #cccccc;
}
/* Button Effects */
.btn-effect {
position: relative;
overflow: hidden;
z-index: 1;
transition: color 0.4s;
background: linear-gradient(90deg, #4699ff, #6bbfff);
border: none;
color: #ffffff;
}
.btn-effect:after {
content: '';
position: absolute;
z-index: -1;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background-color: #ffffff;
transition: left 0.4s;
}
.btn-effect:hover:after {
left: 0;
}
.btn-effect:hover {
color: #000000;
}
/* Footer */
footer {
background-color: #1a1a1a;
color: #cccccc;
}
body::-webkit-scrollbar {
width: var(--sb-size);
}
body::-webkit-scrollbar-track {
background: var(--sb-track-color);
border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
background: var(--sb-thumb-color);
border-radius: 10px;
border: 1px solid #232E33;
}
@supports not selector(::-webkit-scrollbar) {
body {
scrollbar-color: var(--sb-thumb-color)
var(--sb-track-color);
}
}