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

85 lines
2.2 KiB
Svelte
Raw Normal View History

2021-06-22 17:14:21 +02:00
<script>
import FeatureTable from "./FeatureTable.svelte";
2022-03-30 00:32:27 +02:00
import ForCreators from "./ForCreators.svelte";
import OtherPlans from "./OtherPlans.svelte";
import UploadWidget from "./UploadWidget.svelte";
2021-06-22 17:14:21 +02:00
</script>
2022-03-08 23:34:10 +01:00
<header>
<div class="header_image_container"></div>
</header>
2021-06-22 17:14:21 +02:00
<UploadWidget></UploadWidget>
2021-06-22 17:14:21 +02:00
<header>
<h1>What is pixeldrain?</h1>
</header>
2021-06-22 17:14:21 +02:00
<section>
2021-06-22 17:14:21 +02:00
<p>
Pixeldrain is a file sharing 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 a month. 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.
</p>
2021-06-22 17:14:21 +02:00
<p>
Files can be uploaded by clicking the big green upload
button, or by dragging them onto this page from your file
manager.
</p>
<p>
If you uploaded multiple files at once you can also create a
list, which is a collection of files with one single link. Like
a photo album, a music record or a video compilation. Click the
'Create list with uploaded files' button after your uploads are
complete. The files will be saved in the order you uploaded
them.
</p>
</section>
<header>
<h1 id="pro">Getting more out of pixeldrain</h1>
</header>
<section>
<p>
2022-03-30 00:32:27 +02:00
By purchasing a subscription you support pixeldrain on its mission to
make content sharing easier, safer and faster for everyone. The standard
subscription plans use Patreon for payment processing. Check out our <a
href="#prepaid">prepaid plans</a> if you are interested in more
professional services.
</p>
2022-01-11 23:03:30 +01:00
<br/>
<FeatureTable></FeatureTable>
2022-01-03 14:02:50 +01:00
<br/>
<div style="text-align: center;">
Do you need even more time and space? Check out our other plans
2021-06-22 17:14:21 +02:00
</div>
2021-07-26 16:31:31 +02:00
<br/>
<OtherPlans></OtherPlans>
2022-03-30 00:32:27 +02:00
<br/>
</section>
2021-06-22 17:14:21 +02:00
2022-03-30 00:32:27 +02:00
<ForCreators/>
<br/>
<br/>
2021-06-22 17:14:21 +02:00
<style>
2022-03-08 23:34:10 +01:00
.header_image_container {
margin: auto;
2022-03-08 23:34:10 +01:00
height: 300px;
width: 750px;
max-width: 100%;
background-image: url("/res/img/header_orbitron_wide.webp");
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
@media (max-width: 700px) {
.header_image_container {
height: 250px;
background-image: url("/res/img/header_orbitron.webp");
}
2021-06-22 17:14:21 +02:00
}
</style>