From 1db44ec4133547e9cc2f351b56b1d59fafbc5002 Mon Sep 17 00:00:00 2001 From: seth Date: Wed, 10 Apr 2024 07:32:28 -0400 Subject: factor out components --- src/components/NavBar.astro | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/components/NavBar.astro (limited to 'src/components/NavBar.astro') diff --git a/src/components/NavBar.astro b/src/components/NavBar.astro deleted file mode 100644 index b7c0216..0000000 --- a/src/components/NavBar.astro +++ /dev/null @@ -1,20 +0,0 @@ ---- -interface NavLink { - name: string; - url: string; -} - -const links: NavLink[] = [ - { name: "home", url: "/" }, - { - name: "github", - url: "https://github.com/getchoo", - }, -]; ---- - - - -
-- cgit v1.2.3