website/src/routes/__layout.svelte

34 lines
630 B
Svelte
Raw Normal View History

2022-06-22 12:27:47 +05:30
<script>
import "$lib/app.css";
import Nav from "$lib/Nav.svelte";
import Footer from "$lib/Footer.svelte";
import SvelteSeo from "svelte-seo";
</script>
<SvelteSeo
2022-07-03 01:23:41 +05:30
title="Project Segfault"
description="4 idiots, a Sun server and a Hitachi Compute Rack."
2022-06-25 16:54:41 +05:30
canonical="https://projectsegfau.lt/"
2022-06-22 12:27:47 +05:30
openGraph={{
2022-06-25 16:54:41 +05:30
url: "https://projectsegfau.lt/",
2022-07-03 01:23:41 +05:30
title: "Project Segfault",
description: "4 idiots, a Sun server and a Hitachi Compute Rack.",
2022-06-22 12:27:47 +05:30
images: [
{
2022-07-03 01:23:41 +05:30
url: "/ProjectSegfault_Desktop_16-9.png",
2022-06-22 12:27:47 +05:30
width: 850,
height: 650,
2022-06-25 16:54:41 +05:30
alt: "Our banner"
2022-06-22 12:27:47 +05:30
}
]
}}
/>
<Nav />
2022-06-22 12:27:47 +05:30
2022-02-28 23:42:33 +05:30
<main>
<slot />
</main>
2022-06-22 12:27:47 +05:30
<Footer />