mirror of
https://github.com/Fluffy-Bean/website.git
synced 2024-12-28 18:36:28 +00:00
Fix builds, for real real
This commit is contained in:
parent
526c6e26e1
commit
537eb058bf
|
@ -5,10 +5,9 @@ import Layout from "../layouts/Layout.astro";
|
||||||
import Card from "../components/Card.astro";
|
import Card from "../components/Card.astro";
|
||||||
import Music from "../components/Music.astro";
|
import Music from "../components/Music.astro";
|
||||||
|
|
||||||
const tools: string[] = ["Proxmox", "JetBrain IDEs", "Docker", "Linux", "SQLite", "Postgres", "MySQL"];
|
const tools = ["Proxmox", "JetBrain IDEs", "Docker", "Linux", "SQLite", "Postgres", "MySQL"];
|
||||||
const languages: string[] = ["Go", "Python", "HTML", "CSS", "Sass", "TypeScript", "JavaScript", "Scratch", "PHP", "SQL", "Bash"];
|
const languages = ["Go", "Python", "HTML", "CSS", "Sass", "TypeScript", "JavaScript", "Scratch", "PHP", "SQL", "Bash"];
|
||||||
const frameworks: string[] = ["Gin", "Echo", "Flask", "Svelte", "Astro", "raylib"];
|
const frameworks = ["Gin", "Echo", "Flask", "Svelte", "Astro", "raylib"];
|
||||||
|
|
||||||
const projects = await getCollection('projects');
|
const projects = await getCollection('projects');
|
||||||
const posts = await getCollection('posts');
|
const posts = await getCollection('posts');
|
||||||
---
|
---
|
||||||
|
@ -18,7 +17,7 @@ const posts = await getCollection('posts');
|
||||||
<p>Made with Coffee, lots of it.</p>
|
<p>Made with Coffee, lots of it.</p>
|
||||||
|
|
||||||
<div style="margin: 16px 0">
|
<div style="margin: 16px 0">
|
||||||
<Music client:load />
|
<Music />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
|
|
|
@ -7,7 +7,7 @@ import Card from "../../components/Card.astro";
|
||||||
const posts = await getCollection('posts');
|
const posts = await getCollection('posts');
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="Leggy Land" src="/banner.webp" alt="Temporary Banner">
|
<Layout title="Leggy Land" src="/banner-alt.webp" alt="Temporary Banner">
|
||||||
<a class="button" id="back" href="/">Back</a>
|
<a class="button" id="back" href="/">Back</a>
|
||||||
<h1>All Posts</h1>
|
<h1>All Posts</h1>
|
||||||
<p>Some regrettable, some not so bad...</p>
|
<p>Some regrettable, some not so bad...</p>
|
||||||
|
|
|
@ -7,7 +7,7 @@ import Card from "../../components/Card.astro";
|
||||||
const projects = await getCollection('projects');
|
const projects = await getCollection('projects');
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="Leggy Land" src="/banner.webp" alt="Temporary Banner">
|
<Layout title="Leggy Land" src="/banner-alt.webp" alt="Temporary Banner">
|
||||||
<a class="button" id="back" href="/">Back</a>
|
<a class="button" id="back" href="/">Back</a>
|
||||||
<h1>All Projects</h1>
|
<h1>All Projects</h1>
|
||||||
<p>Too many, so many</p>
|
<p>Too many, so many</p>
|
||||||
|
|
Loading…
Reference in a new issue