chore: update credits

This commit is contained in:
Youwen Wu 2024-04-02 23:27:24 -07:00
parent d52bc7b45a
commit 8ac1c3aeb3
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
7 changed files with 46 additions and 7 deletions

View file

@ -1,6 +1,6 @@
# coredump
My personal website and its associated blog. Written in [SvelteKit](https://kit.svelte.dev) and [TailwindCSS](https://tailwindcss.com/).
My personal website and its associated blog. Written in [SvelteKit](https://kit.svelte.dev) using [TailwindCSS](https://tailwindcss.com/) and components from [shadcn-svelte](https://www.shadcn-svelte.com/).
## Running locally

BIN
bun.lockb

Binary file not shown.

View file

@ -10,7 +10,7 @@
xmlns="http://www.w3.org/2000/svg"
version="1.1"
viewBox="0 0 2048 416"
class="diagram select-none font-mono"
class="diagram select-none font-mono hidden sm:block"
text-anchor="middle"
font-size="13px"
stroke-linecap="round"

View file

@ -1,9 +1,10 @@
<script>
import { GithubLogo } from 'svelte-radix';
import Separator from './ui/separator/separator.svelte';
</script>
<footer class="h-24 px-2 mb-4 text-sm md:text-md xl:text-lg">
<hr class="mb-4" />
<Separator class="mb-4" />
<div class="flex justify-center flex-col gap-4">
<div class="flex justify-around gap-4">
<a
@ -13,8 +14,16 @@
>
</div>
<p class="text-zinc-400 dark:text-zinc-700 text-center">
&copy 2024 Youwen Wu | Built with <strong>SvelteKit</strong> and
<strong>shad-cn</strong> |
&copy 2024 Youwen Wu | Built with <a
href="https://kit.svelte.dev"
target="_blank"
class="hover:underline"><strong>SvelteKit</strong></a
>
and
<a href="https://www.shadcn-svelte.com/" class="hover:underline" target="_blank"
><strong>shadcn-svelte</strong></a
>
|
<a href="https://github.com/couscousdude/coredump" target="_blank" class="hover:underline"
>View the source</a
>

View file

@ -6,6 +6,7 @@
import { onMount } from 'svelte';
import { navigating } from '$app/stores';
import Coredump from '$lib/assets/Coredump.svelte';
import Separator from '../ui/separator/separator.svelte';
let current: 'blog' | 'about' | 'home' | 'projects' | string;
@ -31,7 +32,7 @@
{:else}
<Name height="100%" href="/" />
{/if}
<div class="flex gap-14 justify-around align-middle">
<div class="flex gap-1 sm:gap-2 md:gap-4 lg:gap-14 justify-around align-middle">
<a
href="/"
class="text-md sm:text-lg md:text-xl font-medium dark:text-zinc-50 text-zinc-700 px-4 py-1 rounded-3xl hover:bg-zinc-100 dark:hover:bg-zinc-800 transition-colors duration-200"
@ -64,7 +65,7 @@
</Button>
</div>
</div>
<hr />
<Separator />
</nav>
<style lang="postcss">

View file

@ -0,0 +1,7 @@
import Root from "./separator.svelte";
export {
Root,
//
Root as Separator,
};

View file

@ -0,0 +1,22 @@
<script lang="ts">
import { Separator as SeparatorPrimitive } from "bits-ui";
import { cn } from "$lib/utils.js";
type $$Props = SeparatorPrimitive.Props;
let className: $$Props["class"] = undefined;
export let orientation: $$Props["orientation"] = "horizontal";
export let decorative: $$Props["decorative"] = undefined;
export { className as class };
</script>
<SeparatorPrimitive.Root
class={cn(
"shrink-0 bg-border",
orientation === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]",
className
)}
{orientation}
{decorative}
{...$$restProps}
/>