✨ Update general style
- Smaller width of page - Center navbar - Fonts - Catppuccin Mocha colours - TODO.md - Show all uses at the same time - and more...
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
---
|
||||
import Layout from "@/layouts/Layout.astro"
|
||||
import UsesPage from "@/components/UsesPage.svelte"
|
||||
import UsesPage from "@/components/UsesPage.astro"
|
||||
import "@/styles/global.css"
|
||||
import { getCollection } from "astro:content"
|
||||
|
||||
@ -8,5 +8,5 @@ const uses = await getCollection("uses")
|
||||
---
|
||||
|
||||
<Layout title="Hardware" class="mx-auto max-w-[750px]">
|
||||
<UsesPage client:load uses={uses} />
|
||||
<UsesPage uses={uses} />
|
||||
</Layout>
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
import Layout from "../layouts/Layout.astro"
|
||||
import Greeting from "../components/Greeting.astro"
|
||||
import Layout from "@/layouts/Layout.astro"
|
||||
import Greeting from "@/components/Greeting.astro"
|
||||
|
||||
// https://slashpages.net/
|
||||
---
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
import Layout from "@/layouts/Layout.astro"
|
||||
import UsesPage from "@/components/UsesPage.svelte"
|
||||
import UsesPage from "@/components/UsesPage.astro"
|
||||
import "@/styles/global.css"
|
||||
import { getCollection } from "astro:content"
|
||||
|
||||
@ -8,5 +8,5 @@ const uses = await getCollection("uses")
|
||||
---
|
||||
|
||||
<Layout title="Hardware" class="mx-auto max-w-[750px]">
|
||||
<UsesPage client:load uses={uses} />
|
||||
<UsesPage uses={uses} />
|
||||
</Layout>
|
||||
|
Reference in New Issue
Block a user