From 6a586b936a01333e929ae360fc41c0676f692211 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 28 Feb 2026 12:20:28 +0100 Subject: [PATCH] style: replace emoji heart with primary Heart icon and polish Valknar link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Swap 💜 for a filled Lucide Heart icon in text-primary in both Footer and AppSidebar - Style Valknar link with animated underline (decoration-primary on hover) - Add sidebar footer with copyright, Heart, Valknar link, and GitFork source link - Add author field to package.json Co-Authored-By: Claude Sonnet 4.6 --- components/Footer.tsx | 16 +++++++++--- components/layout/AppSidebar.tsx | 45 +++++++++++++++++++++++++++++++- package.json | 4 +++ 3 files changed, 61 insertions(+), 4 deletions(-) diff --git a/components/Footer.tsx b/components/Footer.tsx index 3f05e53..1f32e48 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -1,7 +1,7 @@ 'use client'; import { motion } from 'framer-motion'; -import { GitFork } from 'lucide-react'; +import { GitFork, Heart } from 'lucide-react'; export default function Footer() { const currentYear = new Date().getFullYear(); @@ -17,8 +17,18 @@ export default function Footer() { transition={{ duration: 0.6 }} > {/* Copyright */} -

- © {currentYear} Kit. Built with Next.js 16 & Tailwind CSS 4 +

+ © {currentYear} Kit. + + + Valknar +

{/* Source link */} diff --git a/components/layout/AppSidebar.tsx b/components/layout/AppSidebar.tsx index 470014a..ed44d41 100644 --- a/components/layout/AppSidebar.tsx +++ b/components/layout/AppSidebar.tsx @@ -2,7 +2,7 @@ import Link from 'next/link'; import { usePathname } from 'next/navigation'; -import { X } from 'lucide-react'; +import { X, GitFork, Heart } from 'lucide-react'; import { cn } from '@/lib/utils/cn'; import Logo from '@/components/Logo'; import { useSidebar } from './SidebarProvider'; @@ -108,6 +108,49 @@ export function AppSidebar() { + {/* Sidebar Footer */} +
+ {isCollapsed ? ( + + + + ) : ( +
+

+ © {new Date().getFullYear()} Kit. + + + Valknar + +

+ + + +
+ )} +
+ ); diff --git a/package.json b/package.json index dab87bb..291aff7 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,10 @@ "name": "kit-ui", "version": "0.1.0", "private": true, + "author": { + "name": "Valknar", + "email": "valknar@pivoine.art" + }, "scripts": { "dev": "next dev --turbopack", "build": "next build",