Files
fnx_web/svelte/src/home_page/HomePage.svelte

107 lines
2.6 KiB
Svelte
Raw Normal View History

2021-06-22 17:14:21 +02:00
<script>
2024-06-26 23:28:17 +02:00
import Menu from "../filesystem/Menu.svelte";
2022-10-11 14:21:06 +02:00
import Footer from "../layout/Footer.svelte";
2022-12-24 11:13:50 +01:00
import AddressReputation from "./AddressReputation.svelte";
import FeatureTable from "./FeatureTable.svelte";
2023-09-14 14:29:05 +02:00
import ForCreators from "./ForCreators.svelte";
2024-06-26 23:28:17 +02:00
import UploadLoginWall from "./UploadLoginWall.svelte";
2021-06-22 17:14:21 +02:00
</script>
2023-09-13 15:13:46 +02:00
<div class="page_content">
2024-06-26 23:28:17 +02:00
<header class="header" style="text-align: initial">
<div class="menu_button_container">
<Menu no_login_label="Not logged in" hide_name={false} hide_logo/>
</div>
2022-10-11 14:21:06 +02:00
<div class="header_image_container"></div>
</header>
2021-06-22 17:14:21 +02:00
2022-12-24 11:13:50 +01:00
<AddressReputation/>
2024-06-26 23:28:17 +02:00
<UploadLoginWall/>
2023-09-13 15:13:46 +02:00
</div>
2021-06-22 17:14:21 +02:00
2023-09-13 15:13:46 +02:00
<div class="page_content">
2022-10-11 14:21:06 +02:00
<header>
<h1>What is pixeldrain?</h1>
</header>
<section>
<p>
Pixeldrain is a file hosting website built for speed and ease of
use. You can upload files you want to share online to our servers
and we will hold on to them for at least four months. During this
time anyone with the link will be able to download your files.
Pixeldrain is built to be as fast as possible, so you don't have to
do any unnecessary waiting when downloading files.
2022-10-11 14:21:06 +02:00
</p>
2023-11-29 12:33:04 +01:00
<h2>Privacy</h2>
<p>
Privacy is an important value for pixeldrain. There is too much
tracking on the web nowadays. Pixeldrain goes in the other
direction, this site does not contain any advertisements or third
party tracking scripts. We don't even require you to enter an e-mail
address to register an account.
</p>
<p>
Not running ads does mean that we miss out on a lot of revenue of
course. Running a site like this is a very expensive endeavour.
Please consider supporting the project with one of the premium plans
below.
2022-10-11 14:21:06 +02:00
</p>
</section>
2023-09-13 15:13:46 +02:00
</div>
<div class="page_content">
<FeatureTable/>
2023-09-13 15:13:46 +02:00
</div>
<div class="page_content">
2023-09-14 14:29:05 +02:00
<ForCreators/>
2022-10-11 14:21:06 +02:00
</div>
2022-03-30 00:32:27 +02:00
2023-09-14 14:29:05 +02:00
<Footer/>
2021-06-22 17:14:21 +02:00
<style>
2023-09-13 15:13:46 +02:00
.page_content {
2023-09-14 14:29:05 +02:00
margin-top: 16px;
margin-bottom: 16px;
2023-09-13 15:13:46 +02:00
}
@media (max-width: 1100px) {
.page_content {
margin-top: 0;
}
}
header {
background-image: url("/res/img/inflating_star.webp");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
background-size: cover;
background-blend-mode: normal;
}
header > h1 {
margin-top: 60px;
margin-bottom: 60px;
color: #ffffff;
text-shadow: 0 0 3px #000000;
}
2022-03-08 23:34:10 +01:00
.header_image_container {
2024-06-26 23:28:17 +02:00
text-align: initial;
margin: auto;
2024-06-26 23:28:17 +02:00
height: 150px;
width: 500px;
2022-03-08 23:34:10 +01:00
max-width: 100%;
2024-06-26 23:28:17 +02:00
background-image: url("/res/img/header_orbitron.webp");
2022-03-08 23:34:10 +01:00
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
2024-06-26 23:28:17 +02:00
.menu_button_container {
display: flex;
justify-content: end;
padding-right: 0.5em;
2021-06-22 17:14:21 +02:00
}
</style>