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",