This commit is contained in:
2023-01-25 19:11:11 +02:00
parent add264a5d6
commit 07c0cc4a69
117 changed files with 1554 additions and 3593 deletions

View File

@@ -1,12 +1,10 @@
<svelte:head>
<title>Pubnix FAQ | Project Segfault</title>
</svelte:head>
<script lang="ts">
import type { PageData } from "./$types";
<div class="flex flex-col items-center m-auto text-center prose justify-center">
<h1>Pubnix FAQ</h1>
export let data: PageData;
</script>
<p>Here are some frequently asked questions about the pubnix.</p>
<h1>{data.title}</h1>
<h2>What is a pubnix?</h2>
<span>A pubnix is a [[Unix?]] server provided by a person or a group to a group for non-commercial recreational goals.</span>
</div>
<h2>What is a pubnix?</h2>
<span>A pubnix is a [[Unix?]] server provided by a person or a group to a group for non-commercial recreational goals.</span>

View File

@@ -0,0 +1,7 @@
import type { PageLoad } from "./$types";
export const load = (() => {
return {
title: "Pubnix FAQ"
};
}) satisfies PageLoad;