lots of unfinished changes

This commit is contained in:
Akis 2022-08-04 17:30:24 +03:00
parent 2f2f75b9b1
commit d257749a9d
Signed by untrusted user: akis
GPG Key ID: 267BF5C6677944ED
8 changed files with 48 additions and 74 deletions

View File

@ -1,4 +1,4 @@
# Project Segfault Website # Project Segfault website
Live at [projectsegfau.lt](https://projectsegfau.lt). Live at [projectsegfau.lt](https://projectsegfau.lt).
@ -10,17 +10,10 @@ Live at [projectsegfau.lt](https://projectsegfau.lt).
- Install [pnpm](https://pnpm.io/) (optional, although strongly recommended). - Install [pnpm](https://pnpm.io/) (optional, although strongly recommended).
- Learn [Svelte](https://svelte.dev). - Learn [Svelte](https://svelte.dev).
### Universal ### Running a dev server.
1. Clone the repository using `git clone https://github.com/ProjectSegfault/website`. 1. Clone the repository using `git clone https://github.com/ProjectSegfault/website`.
2. Change directory into the clone using `cd ./website`. 2. Change directory into the clone using `cd ./website`.
3. Install dependencies using `pnpm i` (recommended) or `npm i`. 3. Install dependencies using `pnpm i` (recommended) or `npm i`.
4. Run the dev server using `pnpm dev` (recommended) or `npm run dev`. 4. Run the dev server using `pnpm dev` (recommended) or `npm run dev`.
5. Open a browser on `http://localhost:5173/` and you should see the website running locally! 5. Open a browser on `http://localhost:5173/` and you should see the website running locally!
### NixOS
1. Clone the repository using `git clone https://github.com/ProjectSegfault/website`.
2. Change directory into the clone using `cd ./website`.
3. In the same terminal type `nix-shell`.
4. Open a browser on `http://localhost:5173/` and you should see the website running locally!

View File

@ -1,13 +0,0 @@
{ pkgs ? import <nixpkgs> {}
}:
pkgs.mkShell {
name="dev";
buildInputs = [
pkgs.nodejs-16_x
];
shellHook = ''
echo "Installing dependencies using npm, please wait."
npm i
echo "You can now "run npm run dev" to start a dev server."
'';
}

View File

@ -5,13 +5,7 @@
<nav> <nav>
<a class="brand" href="/"> <a class="brand" href="/">
<img src="/logo.png" alt="Project Segfault logo" /> <img src="/logo.png" alt="Project Segfault logo" />
<span <span>Project Segfault</span>
style="color: var(--accent-secondary); margin-left: 4px; margin-right: 4px;"
>Project</span
>
<span style="color: var(--accent-primary); margin-right: 8px;"
>Segfault</span
>
</a> </a>
<input type="checkbox" id="toggle-menu" /> <input type="checkbox" id="toggle-menu" />
@ -22,13 +16,13 @@
</label> </label>
<div class="links"> <div class="links">
<a href="https://instances.projectsegfau.lt/">Instances & Gameservers</a <a href="https://instances.projectsegfau.lt/">Hosted services</a
> >
<a href="/minecraft">Minecraft</a> <a href="/minecraft">Minecraft</a>
<a href="/donate">Donate</a> <a href="/donate">Donate</a>
<a href="/faq">FAQ</a> <a href="/faq">FAQ</a>
<a href="/contact">Contact</a> <a href="/contact">Contact us</a>
<a href="/members">Members</a> <a href="/members">Our team</a>
<a href="https://blog.projectsegfau.lt/">Blog</a> <a href="https://blog.projectsegfau.lt/">Blog</a>
<a href="/legal">Legal</a> <a href="/legal">Legal</a>
</div> </div>
@ -36,9 +30,10 @@
<style> <style>
nav { nav {
background-color: var(--secondary); background-color: var(--primary);
padding: 1rem; border-bottom: 1px solid var(--grey);
display: flex; display: flex;
padding: .5rem;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
@ -47,6 +42,13 @@
display: flex; display: flex;
align-items: center; align-items: center;
text-decoration: none; text-decoration: none;
color: var(--text);
gap: 8px;
transition: opacity .25s;
}
a.brand:hover {
opacity: .6;
} }
.links { .links {
@ -55,32 +57,22 @@
} }
.links > * { .links > * {
background-color: var(--tertiary); padding: .5rem;
border: none;
border-radius: 10px;
padding: 1rem;
cursor: pointer; cursor: pointer;
color: var(--text); color: var(--text);
font-family: var(--font-primary);
text-decoration: none; text-decoration: none;
transition: color .25s;
font-size: 13px;
font-weight: 500;
} }
.links > *:hover { .links > *:hover {
background-color: var(--accent-tertiary);
text-decoration: none; text-decoration: none;
transition: all 0.5s; color: var(--accent-primary);
color: var(--secondary);
}
.links > *:active {
background-color: var(--accent-primary);
text-decoration: none;
transition: all 0.5s;
color: var(--secondary);
} }
img { img {
height: 36px; height: 30px;
border-radius: 50%; border-radius: 50%;
} }
@ -97,8 +89,7 @@
.links { .links {
display: none; display: none;
width: 100%; width: 100%;
background-color: var(--secondary); padding-top: 12px;
padding-top: 2rem;
} }
nav { nav {
@ -112,15 +103,17 @@
} }
.menu-icon { .menu-icon {
display: block; display: flex;
align-items: center;
justify-content: center;
z-index: 1; z-index: 1;
position: absolute; position: absolute;
top: 0.45rem;
right: 1rem; right: 1rem;
background-color: var(--tertiary); top: .35rem;
border: none; border: none;
border-radius: 10px; border-radius: 10px;
padding: 1rem; height: 30px;
width: 30px;
cursor: pointer; cursor: pointer;
line-height: 1; line-height: 1;
} }

View File

@ -14,10 +14,11 @@ html {
--primary: #151515; --primary: #151515;
--secondary: #252525; --secondary: #252525;
--tertiary: #353535; --tertiary: #353535;
--accent-primary: #cfce73; --accent-primary: #00d4aa;
--accent-secondary: #9c6fd6; --accent-secondary: #00d4aa;
--accent-tertiary: #fcc348; --accent-tertiary: #00d4aa;
--text: #fff; --text: #ffffffde;
--grey: #5454547a;
--font-primary: Comfortaa; --font-primary: Comfortaa;
--font-header: Inter --font-header: Inter

View File

@ -1,5 +1,5 @@
--- ---
title: Contact Us title: Contact us
description: Do you want to contact us? description: Do you want to contact us?
--- ---
@ -23,4 +23,4 @@ _Please be aware that Microsoft often blocks non-popular emails, if you do conta
## People ## People
You can find ways to contact individual members [on our Members page](/members). You can find ways to contact individual team members [on our team page](/team).

View File

@ -18,7 +18,7 @@
<h2>What is this?</h2> <h2>What is this?</h2>
<p> <p>
We are 7 teenagers who have a decently powerful server. What do we do with this server? Host game servers and random assortment of privacy respecting tools like Invidious, Nextcloud, Matrix etc.... and maybe some original works. You'll see eventually! We are 7 humans who have a decently powerful server. What do we do with this server? Host game servers and random assortment of privacy respecting tools like Invidious, Nextcloud, Matrix etc.... and maybe some original works. You'll see eventually!
</p> </p>
<h2>Tell me more! What do you guys host? Where can I contact you? Can you fix my daughter's iPad?</h2> <h2>Tell me more! What do you guys host? Where can I contact you? Can you fix my daughter's iPad?</h2>

View File

@ -1,5 +1,5 @@
<script lang="ts"> <script lang="ts">
import members from "$lib/Members.json"; import members from "$lib/Team.json";
import IconDiscord from "~icons/simple-icons/discord"; import IconDiscord from "~icons/simple-icons/discord";
import IconMatrix from "~icons/simple-icons/matrix"; import IconMatrix from "~icons/simple-icons/matrix";
import IconGitHub from "~icons/simple-icons/github"; import IconGitHub from "~icons/simple-icons/github";
@ -10,16 +10,16 @@
</script> </script>
<svelte:head> <svelte:head>
<title>Members | Project Segfault</title> <title>Our team | Project Segfault</title>
<meta name="description" content="Members of Project Segfault." /> <meta name="description" content="Team members of Project Segfault." />
</svelte:head> </svelte:head>
<div class="members"> <div class="team">
<h1>Members</h1> <h1>Our team</h1>
<p>Our excellent members!</p> <p>Our excellent team members!</p>
<div class="member-outer"> <div class="team-outer">
{#each members as { name, discord, matrix, position, description, github, website, email, picture }} {#each members as { name, discord, matrix, position, description, github, website, email, picture }}
<div class="member-inner"> <div class="team-inner">
<div class="main"> <div class="main">
<span>{name} - {position}</span> <span>{name} - {position}</span>
@ -63,14 +63,14 @@
</div> </div>
<style> <style>
.member-outer { .team-outer {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 2rem; gap: 2rem;
flex-flow: row wrap; flex-flow: row wrap;
} }
.member-inner { .team-inner {
background-color: #252525; background-color: #252525;
border-radius: 10px; border-radius: 10px;
padding: 1rem; padding: 1rem;