From ceee45409db8fb8e2853a59998aaedbf8124b384 Mon Sep 17 00:00:00 2001 From: Lukas Moungos Date: Wed, 28 Dec 2022 23:58:45 +0100 Subject: [PATCH] test changes --- components/Navbar.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Navbar.tsx b/components/Navbar.tsx index 5f47e2d..7915ae6 100644 --- a/components/Navbar.tsx +++ b/components/Navbar.tsx @@ -5,9 +5,9 @@ import { motion, AnimatePresence } from "framer-motion"; import { Logo } from "./Logo"; const links = [ - { name: "blog", href: "/blog" }, - { name: "projects", href: "/projects" }, - { name: "github", href: "https://git.peroxy.dev/kookroach" }, + { name: "Blog", href: "/blog" }, + { name: "Projects", href: "/projects" }, + { name: "Gitea", href: "https://git.peroxy.dev/kookroach" }, ]; export const Navbar = () => { const [showMenu, setShowMenu] = useState(false);