mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-08 17:12:24 +05:30
add fixes for members page
This commit is contained in:
parent
7981c59663
commit
1bb599bd40
@ -69,6 +69,8 @@
|
||||
|
||||
.links a {
|
||||
text-decoration: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 500px) {
|
||||
|
@ -1,32 +1,31 @@
|
||||
<script lang="ts">
|
||||
export let title;
|
||||
export let description;
|
||||
export let separator;
|
||||
import SvelteSeo from 'svelte-seo';
|
||||
// Enjoy the jank.
|
||||
if(title === "Project Segfault") {
|
||||
title = "";
|
||||
separator = "";
|
||||
}
|
||||
else {
|
||||
separator = "|";
|
||||
}
|
||||
export let separator;
|
||||
import SvelteSeo from "svelte-seo";
|
||||
// Enjoy the jank.
|
||||
if (title === "Project Segfault") {
|
||||
title = "";
|
||||
separator = "";
|
||||
} else {
|
||||
separator = "|";
|
||||
}
|
||||
</script>
|
||||
|
||||
<SvelteSeo
|
||||
openGraph={{
|
||||
title: title,
|
||||
description: description,
|
||||
type: 'website',
|
||||
images: [
|
||||
{
|
||||
url: 'https://projectsegfau.lt:8448/_matrix/media/r0/download/projectsegfau.lt/HBgjhWUExhKPzbpkpIqQfUkF',
|
||||
width: 850,
|
||||
height: 650,
|
||||
alt: 'Image'
|
||||
}
|
||||
]
|
||||
}}
|
||||
openGraph={{
|
||||
title: title,
|
||||
description: description,
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://projectsegfau.lt:8448/_matrix/media/r0/download/projectsegfau.lt/HBgjhWUExhKPzbpkpIqQfUkF",
|
||||
width: 850,
|
||||
height: 650,
|
||||
alt: "Image"
|
||||
}
|
||||
]
|
||||
}}
|
||||
/>
|
||||
|
||||
<svelte:head>
|
||||
@ -35,4 +34,4 @@
|
||||
|
||||
<div class="mdsvex_content">
|
||||
<slot />
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,35 +1,35 @@
|
||||
[
|
||||
{
|
||||
"name": "Midou",
|
||||
"matrix": "https://matrix.to/#/@midou:projectsegfau.lt/",
|
||||
"position": "System administrator",
|
||||
"description": "Fill out your fucking description",
|
||||
"github": "https://github.com/Midou36O",
|
||||
"website": "https://miicord.com"
|
||||
"matrix": "https://matrix.to/#/@midou:projectsegfau.lt/",
|
||||
"position": "System administrator",
|
||||
"description": "Placeholder",
|
||||
"github": "https://github.com/Midou36O/",
|
||||
"website": "https://miicord.com/"
|
||||
},
|
||||
{
|
||||
"name": "MrLeRien",
|
||||
"discord": "https://discord.com/users/213634643327582208/",
|
||||
"position": "Hoster",
|
||||
"description": "Fill out your fucking description",
|
||||
"github": "https://github.com/MrLeRien"
|
||||
"discord": "https://discord.com/users/213634643327582208/",
|
||||
"position": "Hoster",
|
||||
"description": "Placeholder",
|
||||
"github": "https://github.com/MrLeRien/"
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "akisblack",
|
||||
"matrix": "https://matrix.to/#/@akis:projectsegfau.lt/",
|
||||
"discord": "https://discord.com/users/845535118285602866/",
|
||||
"position": "Web developer",
|
||||
"description": "Fill out your fucking description",
|
||||
"github": "https://github.com/akisblack",
|
||||
"website": "https://akisblack.github.io"
|
||||
"matrix": "https://matrix.to/#/@akis:projectsegfau.lt/",
|
||||
"discord": "https://discord.com/users/845535118285602866/",
|
||||
"position": "Web developer",
|
||||
"description": "Hi, I am Akis.",
|
||||
"github": "https://github.com/akisblack/",
|
||||
"website": "https://akisblack.github.io/"
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "Devnol",
|
||||
"matrix": "https://matrix.to/#/@devnol:projectsegfau.lt/",
|
||||
"discord": "https://discord.com/users/429353559566319626/",
|
||||
"position": "Hoster",
|
||||
"description": "I am the asshole",
|
||||
"github": "https://github.com/Devnol",
|
||||
"website": "https://devnol.github.io"
|
||||
"matrix": "https://matrix.to/#/@devnol:projectsegfau.lt/",
|
||||
"discord": "https://discord.com/users/429353559566319626/",
|
||||
"position": "Hoster",
|
||||
"description": "Placeholder",
|
||||
"github": "https://github.com/Devnol/",
|
||||
"website": "https://devnol.github.io/"
|
||||
}
|
||||
]
|
||||
]
|
||||
|
@ -11,11 +11,13 @@
|
||||
</a>
|
||||
|
||||
<div class="links">
|
||||
<a href="https://instances.projectsegfau.lt/">Instances & Gameservers</a>
|
||||
<a href="https://instances.projectsegfau.lt/">Instances & Gameservers</a
|
||||
>
|
||||
<a href="/minecraft">Minecraft</a>
|
||||
<a href="/donate">Donate</a>
|
||||
<a href="/faq">FAQ</a>
|
||||
<a href="/contact">Contact</a>
|
||||
<a href="/members">Members</a>
|
||||
<a href="https://blog.projectsegfau.lt/">Blog</a>
|
||||
<a href="/legal">Legal</a>
|
||||
</div>
|
||||
@ -77,6 +79,7 @@
|
||||
nav {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
div.links {
|
||||
|
@ -35,4 +35,4 @@ a {
|
||||
text-decoration: underline;
|
||||
color: var(--accent-primary);
|
||||
text-underline-offset: 5px;
|
||||
}
|
||||
}
|
||||
|
@ -11,8 +11,8 @@ description: Do you want to contact us?
|
||||
|
||||
[contact@projectsegfau.lt](mailto:contact@projectsegfau.lt)
|
||||
|
||||
*Please be aware that Microsoft often blocks non-popular emails, if you do contact us through there, make sure to check your spam and mark it as not-spam!*
|
||||
_Please be aware that Microsoft often blocks non-popular emails, if you do contact us through there, make sure to check your spam and mark it as not-spam!_
|
||||
|
||||
## People
|
||||
|
||||
You can find ways to contact individual members [on our Members page](/members).
|
||||
You can find ways to contact individual members [on our Members page](/members).
|
||||
|
@ -19,4 +19,4 @@ Well, you really can't. We don't make our logs or anything else public, however,
|
||||
|
||||
## Which ways do you prefer to communicate?
|
||||
|
||||
Look at [Contact](/contact).
|
||||
Look at [Contact](/contact).
|
||||
|
@ -13,4 +13,4 @@ We are 4 teenagers who have a decently powerful server. What do we do with this
|
||||
|
||||
## Tell me more! What do you guys host? Where can I contact you? Can you fix my daughter's iPad?
|
||||
|
||||
We can't fix your daughter's iPad, but there is a navigation bar at the top of the page with links to websites and pages that explain things about us, or contain useful information about our services.
|
||||
We can't fix your daughter's iPad, but there is a navigation bar at the top of the page with links to websites and pages that explain things about us, or contain useful information about our services.
|
||||
|
@ -6,6 +6,6 @@ title: Legal stuff
|
||||
|
||||
Since we care about transparency, privacy and safety we have created some documents regarding these topics.
|
||||
|
||||
- [Privacy Policy](/legal/privacy-policy)
|
||||
- [Terms of Service](/legal/tos)
|
||||
- [Transparency reports](https://github.com/ProjectSegfault/transparency/)
|
||||
- [Privacy Policy](/legal/privacy-policy)
|
||||
- [Terms of Service](/legal/tos)
|
||||
- [Transparency reports](https://github.com/ProjectSegfault/transparency/)
|
||||
|
@ -11,23 +11,25 @@ We take your privacy more seriously than FAANG.
|
||||
|
||||
Here's what we collect.
|
||||
|
||||
- User agent (OS and browser)
|
||||
- IP address (This is kind of obvious. Every website does this. If you're paranoid about this, get a [good VPN](https://wiki.pussthecat.org/general/privacy-guide/#vpn) or use Tor.)
|
||||
- When you made a request
|
||||
- Referrer (Where you came from when you made a request.)
|
||||
- User agent (OS and browser)
|
||||
- IP address (This is kind of obvious. Every website does this. If you're paranoid about this, get a [good VPN](https://wiki.pussthecat.org/general/privacy-guide/#vpn) or use Tor.)
|
||||
- When you made a request
|
||||
- Referrer (Where you came from when you made a request.)
|
||||
|
||||
The log looks like this, for reference: ``127.0.0.1 - - [17/Jun/2022:20:19:26 +0300] "GET / HTTP/2.0" 200 144 "https://projectsegfau.lt/" "Mozilla/5.0 (Windows NT 10.0; rv:100.0) Gecko/20100101 Firefox/100.0" "-"``
|
||||
The log looks like this, for reference: `127.0.0.1 - - [17/Jun/2022:20:19:26 +0300] "GET / HTTP/2.0" 200 144 "https://projectsegfau.lt/" "Mozilla/5.0 (Windows NT 10.0; rv:100.0) Gecko/20100101 Firefox/100.0" "-"`
|
||||
|
||||
Some of our services have things like databases and things, for example [Pleroma](https://social.projectsegfau.lt), but that should be pretty obvious the moment you make an account on there. They may collect some things, however we barely even access those databases so you should be fine.
|
||||
|
||||
If you want the data we've collected on you to be sent, please contact us on Matrix in [this room](https://matrix.to/#/#gdpr:projectsegfau.lt). You don't need an account on our Matrix instance in order to chat there, you can choose from a bunch of public instances or make your own.
|
||||
|
||||
## We don't give any of the data we collect to anyone outside of Project Segfault.
|
||||
|
||||
What we just described above won't be sold or given to anyone outside of Project Segfault. It could be given to law enforcement IF they have a warrant.
|
||||
|
||||
There is no reason for anyone outside of Project Segfault to see your data. In fact, Project Segfault really has no reason to see your data, unless there's something to suspect.
|
||||
|
||||
## Data may be cleared at any point upon request, but...
|
||||
|
||||
As we said, you can request any GDPR/Privacy things in [this Matrix room](https://matrix.to/#/#gdpr:projectsegfau.lt). But, if there's any ongoing investigations and a law enforcement agency contacts us, we will comply. But, we will only do it if we can verify it's official and they have a warrant.
|
||||
|
||||
We hope you can understand our privacy policy.
|
||||
We hope you can understand our privacy policy.
|
||||
|
@ -10,4 +10,4 @@ description: We're not anarchists, so we have some rules.
|
||||
1. Do not use our Services to (D)DOS or attempt to disrupt someone else's online stability.
|
||||
2. Do not use our Services to Dox someone.
|
||||
3. Do not do anything on our Services that would be illegal in Greece or France.
|
||||
4. Refrain from using our services to harass people.
|
||||
4. Refrain from using our services to harass people.
|
||||
|
@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import members from "$lib/Members.json";
|
||||
import IconDiscord from "~icons/simple-icons/discord";
|
||||
import IconDiscord from "~icons/simple-icons/discord";
|
||||
import IconMatrix from "~icons/simple-icons/matrix";
|
||||
import IconGitHub from "~icons/simple-icons/github";
|
||||
|
||||
@ -8,117 +8,119 @@
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Members | Project Segfault</title>
|
||||
<meta name="description" content="Members of Project Segfault.">
|
||||
<title>Members | Project Segfault</title>
|
||||
<meta name="description" content="Members of Project Segfault." />
|
||||
</svelte:head>
|
||||
|
||||
<div class="members">
|
||||
<h1>Members</h1>
|
||||
<div class="member-outer">
|
||||
{#each members as { name, discord, matrix, position, description, github, website }}
|
||||
<div class="member-inner">
|
||||
<h2 class="stupidh2">{name} - Position: {position}</h2>
|
||||
{#if description}
|
||||
<p class="description">{description}</p>
|
||||
{/if}
|
||||
<div class="member-inner">
|
||||
<span>{name} - {position}</span>
|
||||
|
||||
<div class="socials">
|
||||
{#if description}
|
||||
<p class="description">{description}</p>
|
||||
{/if}
|
||||
|
||||
{#if matrix}
|
||||
<a href={matrix} class="matrixcolored"><IconMatrix /></a>
|
||||
{/if}
|
||||
<div class="socials">
|
||||
{#if matrix}
|
||||
<a href={matrix} class="matrixcolored"><IconMatrix /></a
|
||||
>
|
||||
{/if}
|
||||
|
||||
{#if discord}
|
||||
<a href={discord} class="discordcolored"><IconDiscord /></a>
|
||||
{/if}
|
||||
{#if discord}
|
||||
<a href={discord} class="discordcolored"
|
||||
><IconDiscord /></a
|
||||
>
|
||||
{/if}
|
||||
|
||||
{#if github}
|
||||
<a href={github} class="githubcolored"><IconGitHub /></a>
|
||||
{/if}
|
||||
{#if github}
|
||||
<a href={github} class="githubcolored"><IconGitHub /></a
|
||||
>
|
||||
{/if}
|
||||
|
||||
{#if website}
|
||||
<a href={website} class="button"><IconGlobe /></a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{#if website}
|
||||
<a href={website} class="web"><IconGlobe /></a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.member-outer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2rem;
|
||||
}
|
||||
.member-inner {
|
||||
background-color: #252525;
|
||||
border-radius: 16px;
|
||||
padding: 10px;
|
||||
width: 30%;
|
||||
}
|
||||
a {
|
||||
border: none;
|
||||
.member-outer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2rem;
|
||||
flex-flow: row wrap;
|
||||
}
|
||||
|
||||
.member-inner {
|
||||
background-color: #252525;
|
||||
border-radius: 10px;
|
||||
padding: 1rem;
|
||||
width: 30em;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 25px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
a {
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
padding: 0.5rem;
|
||||
cursor: pointer;
|
||||
font-family: var(--font-primary);
|
||||
color: var(--secondary);
|
||||
text-decoration: none;
|
||||
width: fit-content;
|
||||
}
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.matrixcolored {
|
||||
.matrixcolored {
|
||||
background-color: #fff;
|
||||
margin-left: 0px;
|
||||
font-size: 20px;
|
||||
height: 23px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
font-size: 20px;
|
||||
height: 23px;
|
||||
}
|
||||
|
||||
.discordcolored {
|
||||
background-color: #5865f2;
|
||||
color: #fff !important;
|
||||
margin-left: 0px;
|
||||
font-size: 20px;
|
||||
height: 23px;
|
||||
vertical-align: middle;
|
||||
font-size: 20px;
|
||||
height: 23px;
|
||||
}
|
||||
|
||||
.githubcolored {
|
||||
.githubcolored {
|
||||
background-color: #333;
|
||||
color: #fff !important;
|
||||
margin-left: 0px;
|
||||
font-size: 20px;
|
||||
height: 23px;
|
||||
vertical-align: middle;
|
||||
font-size: 20px;
|
||||
height: 23px;
|
||||
}
|
||||
|
||||
.button {
|
||||
.web {
|
||||
background-color: var(--tertiary);
|
||||
color: #fff !important;
|
||||
margin-left: 0px;
|
||||
font-size: 20px;
|
||||
height: 23px;
|
||||
vertical-align: middle;
|
||||
font-size: 20px;
|
||||
height: 23px;
|
||||
}
|
||||
.button:hover {
|
||||
background-color: var(--accent-tertiary);
|
||||
color: var(--secondary) !important;
|
||||
transition: all 0.5s;
|
||||
}
|
||||
.button:active {
|
||||
|
||||
.web:hover {
|
||||
background-color: var(--accent-tertiary);
|
||||
color: var(--secondary) !important;
|
||||
transition: all 0.5s;
|
||||
}
|
||||
|
||||
.web:active {
|
||||
background-color: var(--accent-primary);
|
||||
transition: all 0.5s;
|
||||
}
|
||||
.socials {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: .5rem;
|
||||
}
|
||||
@media only screen and (max-width: 820px) {
|
||||
.member-inner {
|
||||
width: initial;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
transition: all 0.5s;
|
||||
}
|
||||
|
||||
.socials {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
</style>
|
||||
|
@ -7,7 +7,7 @@ description: Recommended client side mods for use when playing on our server.
|
||||
|
||||
{ description }
|
||||
|
||||
*[Click me to go back to the Minecraft page](/minecraft)*
|
||||
_[Click me to go back to the Minecraft page](/minecraft)_
|
||||
|
||||
## How are these mods picked?
|
||||
|
||||
@ -19,7 +19,7 @@ These plugins only support Minecraft Java edition and most only work on the Fabr
|
||||
|
||||
## The list
|
||||
|
||||
- [Xaero's World Map](https://www.curseforge.com/minecraft/mc-mods/xaeros-world-map/)
|
||||
- [Xaero's Minimap](https://www.curseforge.com/minecraft/mc-mods/xaeros-minimap/)
|
||||
- [Simple Voice Chat](https://modrinth.com/mod/simple-voice-chat/)
|
||||
- Any optimization mod (we recommend at least Sodium, but you can find more on [Modrinth](https://modrinth.com/).)
|
||||
- [Xaero's World Map](https://www.curseforge.com/minecraft/mc-mods/xaeros-world-map/)
|
||||
- [Xaero's Minimap](https://www.curseforge.com/minecraft/mc-mods/xaeros-minimap/)
|
||||
- [Simple Voice Chat](https://modrinth.com/mod/simple-voice-chat/)
|
||||
- Any optimization mod (we recommend at least Sodium, but you can find more on [Modrinth](https://modrinth.com/).)
|
||||
|
@ -5,7 +5,7 @@ description: Information about our Minecraft server.
|
||||
|
||||
# { title }
|
||||
|
||||
We have an invite-only SMP server running on our network on version 1.18* (1.18, 1.18.1, 1.18.2) which is also bridged to Bedrock using GeyserMC.
|
||||
We have an invite-only SMP server running on our network on version 1.18\* (1.18, 1.18.1, 1.18.2) which is also bridged to Bedrock using GeyserMC.
|
||||
|
||||
## How do I join?
|
||||
|
||||
@ -24,7 +24,7 @@ If you would like to join, please join our Matrix space or Discord server and as
|
||||
|
||||
**Bedrock**: `mc.projectsegfau.lt:19132`
|
||||
|
||||
*Psst, you can join bedrock on your Switch using the app we’ve linked below!*
|
||||
_Psst, you can join bedrock on your Switch using the app we’ve linked below!_
|
||||
|
||||
## Links
|
||||
|
||||
@ -42,18 +42,18 @@ If you would like to join, please join our Matrix space or Discord server and as
|
||||
|
||||
A list of plugins we use on our server via PaperMC.
|
||||
|
||||
*This is a manually made list of our plugins, so it might not reflect the plugins currently on the server.*
|
||||
_This is a manually made list of our plugins, so it might not reflect the plugins currently on the server._
|
||||
|
||||
- BlockLocker
|
||||
- CoreProtect
|
||||
- [Dynmap](https://map.mc.projectsegfau.lt/)
|
||||
- EssentialsX (EssentialsXDiscord, EssentialsXGeoIP)
|
||||
- Geyser & Floodgate
|
||||
- LuckPerms
|
||||
- mcMMO ([Click here to download our build of mcMMO.](https://dl.odyssey346.dev/Software/mcMMO.jar))
|
||||
- TabTPS
|
||||
- Vault
|
||||
- ViaVersion (You may only connect from a base version and its subversions (1.18, 1.18.1, 1.18.2). You cannot connect from a major version older or newer than the major version the server is running.)
|
||||
- PlugMan
|
||||
- CombatLogX
|
||||
- Simple Voice Chat
|
||||
- BlockLocker
|
||||
- CoreProtect
|
||||
- [Dynmap](https://map.mc.projectsegfau.lt/)
|
||||
- EssentialsX (EssentialsXDiscord, EssentialsXGeoIP)
|
||||
- Geyser & Floodgate
|
||||
- LuckPerms
|
||||
- mcMMO ([Click here to download our build of mcMMO.](https://dl.odyssey346.dev/Software/mcMMO.jar))
|
||||
- TabTPS
|
||||
- Vault
|
||||
- ViaVersion (You may only connect from a base version and its subversions (1.18, 1.18.1, 1.18.2). You cannot connect from a major version older or newer than the major version the server is running.)
|
||||
- PlugMan
|
||||
- CombatLogX
|
||||
- Simple Voice Chat
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { sveltekit } from '@sveltejs/kit/vite';
|
||||
import { sveltekit } from "@sveltejs/kit/vite";
|
||||
import icons from "unplugin-icons/vite";
|
||||
|
||||
/** @type {import('vite').UserConfig} */
|
||||
@ -12,4 +12,4 @@ const config = {
|
||||
]
|
||||
};
|
||||
|
||||
export default config;
|
||||
export default config;
|
||||
|
Loading…
Reference in New Issue
Block a user