useful reminder

This commit is contained in:
Michael Freno
2025-12-21 00:35:24 -05:00
parent 72bf84d7b0
commit a5c2330e87
2 changed files with 109 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ import { RecentCommits } from "./RecentCommits";
import { ActivityHeatmap } from "./ActivityHeatmap";
import { DarkModeToggle } from "./DarkModeToggle";
import { SkeletonBox, SkeletonText } from "./SkeletonLoader";
import { env } from "~/env/client";
interface GitCommit {
sha: string;
@@ -384,7 +385,10 @@ export function LeftBar() {
<div class="flex h-full min-h-full flex-col overflow-y-auto">
<Typewriter speed={10} keepAlive={10000} class="z-50 pr-8 pl-4">
<h3 class="hover:text-subtext0 w-fit pt-6 text-center text-3xl underline transition-transform duration-200 ease-in-out hover:-translate-y-0.5 hover:scale-105">
<a href="/">Freno.dev</a>
<a href="/">
{env.VITE_DOMAIN.split("://")[1].charAt(0).toUpperCase() +
env.VITE_DOMAIN.split("://")[1].slice(1)}
</a>
</h3>
</Typewriter>