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

101 lines
2.4 KiB
Svelte
Raw Normal View History

2021-06-22 17:14:21 +02:00
<script>
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";
import UploadWidget from "./UploadWidget.svelte";
2021-06-22 17:14:21 +02:00
</script>
2023-09-13 15:13:46 +02:00
<div class="page_content">
2022-10-11 14:21:06 +02:00
<header>
<div class="header_image_container"></div>
</header>
2021-06-22 17:14:21 +02:00
2022-12-24 11:13:50 +01:00
<AddressReputation/>
2022-10-11 14:21:06 +02:00
<UploadWidget></UploadWidget>
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 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 two 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>
<p>
Files can be uploaded by clicking the big green upload button, or by
dragging them onto this page from your file manager.
2022-10-11 14:21:06 +02:00
</p>
<h2>Accounts</h2>
<p>
An account is not required to use pixeldrain, but it enables some
useful features. With a pixeldrain account you can access your files
and albums on all your devices. You can also rename and delete files
you have uploaded. And create and reorder albums you have created.
Sign up for a pixeldrain account on <a href="/register">the
registration page</a>. More about pixeldrain's features 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 {
margin: auto;
2022-10-11 14:21:06 +02:00
height: 200px;
2022-03-08 23:34:10 +01:00
width: 750px;
max-width: 100%;
background-image: url("/res/img/header_orbitron_wide.webp");
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
2022-10-11 14:21:06 +02:00
@media (max-width: 600px) {
2022-03-08 23:34:10 +01:00
.header_image_container {
background-image: url("/res/img/header_orbitron.webp");
}
2021-06-22 17:14:21 +02:00
}
</style>