diff --git a/src/app.css b/src/app.css
index a6c53de..5e48bd6 100644
--- a/src/app.css
+++ b/src/app.css
@@ -1,3 +1,4 @@
+@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@import "tailwindcss";
@import "@catppuccin/tailwindcss/mocha.css";
@@ -19,6 +20,7 @@
}
@theme {
+ --font-custom: "Lora", serif;
--animate-marquee: marquee 15s linear infinite;
--animate-marquee2: marquee2 15s linear infinite;
@keyframes marquee {
@@ -37,12 +39,16 @@
0%, 100% { opacity: 0.15; }
50% { opacity: 0.3; }
}
+ @keyframes wave {
+ 0%, 100% { transform: rotate(5deg); }
+ 50% { transform: rotate(0deg); }
+ }
}
@layer base {
* { @apply transition-all duration-300 ease-in-out; }
html { @apply h-full scroll-smooth; }
- body { @apply bg-ctp-crust text-ctp-text h-full; }
+ body { @apply bg-ctp-crust text-ctp-text h-full font-[Lora]; }
h1 { @apply text-3xl md:text-4xl font-semibold my-4; }
h2 { @apply text-2xl md:text-3xl font-bold my-4; }
h3 { @apply text-xl md:text-2xl font-bold my-4; }
diff --git a/src/lib/index.ts b/src/lib/index.ts
index 756a923..c9b936a 100644
--- a/src/lib/index.ts
+++ b/src/lib/index.ts
@@ -48,8 +48,8 @@ export default {
title: "satr14's site",
quote: "sometimes you just gotta implement it yourself",
name: "satr14",
- roles: ["Web Dev", "Sys Admin", "Hobbyist", "Student"],
- description: "Welcome to my over-engineered corner of the Internet! I'm Satria, Im a self-taught hobbyist web developer and homelaber sysadmin from Indonesia. I've been programming since 2021 and spend my free time working on personal projects and experimenting with new technologies.",
+ roles: ["Web Dev", "Sys Admin", "Hobbyist", "Student", "SWE?"],
+ description: "Welcome to my over-engineered corner of the Interwebs! I'm Satria, Im a self-taught hobbyist web developer and homelaber sysadmin from Indonesia. I've been programming since 2021 when I was 11. Spent my free time working on personal projects and experimenting with new technologies.",
skills: ["Tailwind", "SvelteKit", "TypeScript", "Bun", "Linux", "Nginx", "Docker", "Git", "Bash", "Nix"],
timezone: "Asia/Jakarta",
location: "Indonesia",
@@ -72,7 +72,7 @@ export default {
"Hack Club": {
icon: "https://assets.hackclub.com/icon-square.png",
role: "Former Event Organizer",
- url: "https://hackclub.com/",
+ url: "https://daydream.hackclub.com/",
},
},
socials: {
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index 8b78af1..d71bb4d 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -53,8 +53,8 @@
-
-
+
+
{#if showNotification}
@@ -125,14 +125,14 @@