diff --git a/bun.lockb b/bun.lockb index 5e003ad..b00f6bc 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 43ec7e1..f126697 100644 --- a/package.json +++ b/package.json @@ -43,6 +43,8 @@ "@faker-js/faker": "^8.4.1", "@fontsource/geist-mono": "^5.0.2", "@fontsource/geist-sans": "^5.0.2", + "@fontsource/merriweather": "^5.0.12", + "@fontsource/zilla-slab": "^5.0.12", "bits-ui": "^0.21.2", "clsx": "^2.1.0", "marked": "^12.0.1", diff --git a/src/lib/app.css b/src/lib/app.css index e01b749..e5576d6 100644 --- a/src/lib/app.css +++ b/src/lib/app.css @@ -4,16 +4,16 @@ @layer base { :root { - --background: 0 0% 100%; + --background: 0 0% 93%; --foreground: 240 10% 3.9%; --muted: 240 4.8% 95.9%; --muted-foreground: 240 3.8% 46.1%; - --popover: 0 0% 100%; + --popover: 0 0% 96%; --popover-foreground: 240 10% 3.9%; - --card: 0 0% 100%; + --card: 0 0% 96%; --card-foreground: 240 10% 3.9%; --border: 240 5.9% 90%; diff --git a/src/lib/assets/Coredump.svelte b/src/lib/assets/Coredump.svelte index 7c3750d..c12335d 100644 --- a/src/lib/assets/Coredump.svelte +++ b/src/lib/assets/Coredump.svelte @@ -21,54 +21,54 @@ out:fly={{ x: 100, duration: 300 }} > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $$$$$ $:::$ @@ -253,8 +253,7 @@ diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index f75edcd..094eb0b 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -4,6 +4,8 @@ import { ModeWatcher } from 'mode-watcher'; import '@fontsource/geist-sans/latin.css'; import '@fontsource/geist-mono/latin.css'; + import '@fontsource/zilla-slab/latin.css'; + import '@fontsource/merriweather/latin.css'; import Footer from '$lib/components/Footer.svelte'; import { Toaster } from '$lib/components/ui/sonner'; diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index edd5cc1..1064c4f 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -16,7 +16,7 @@
-

+

👋 Hi, I'm Youwen,

@@ -33,14 +33,15 @@ I'm interested in systems programming, web design, data science, and statistics.
-
- +
+ My GitHub
diff --git a/src/routes/blog/+page.svelte b/src/routes/blog/+page.svelte index 72a6b11..e24be34 100644 --- a/src/routes/blog/+page.svelte +++ b/src/routes/blog/+page.svelte @@ -7,7 +7,7 @@ let doc = { title: 'Test Post', - description: '' + description: 'An insightful and succinct blurb about the post.' }; export let data: PageData; @@ -25,12 +25,12 @@
-
Docs
+
The Coredump
{doc.title}
-

+

{doc.title}

{#if doc.description} diff --git a/tailwind.config.js b/tailwind.config.js index a899351..03c5f90 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -54,7 +54,9 @@ const config = { }, fontFamily: { sans: ['Geist Sans', 'sans-serif'], - mono: ['Geist Mono', 'monospace'] + mono: ['Geist Mono', 'monospace'], + display: ['Zilla Slab', 'serif'], + serif: ['Merriweather', 'serif'] } } }