- Next.js 16 with Turbopack - React 19 - Tailwind CSS 4 with CSS-first config - Framer Motion animations - Animated logo and hero section - Tool cards for Vert and Paint - Glassmorphism effects and gradient animations - Fully responsive design - Docker support with Nginx - Static export ready 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
'use client';
|
|
|
|
import { motion } from 'framer-motion';
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer className="relative py-12 px-4 border-t border-gray-800">
|
|
<div className="max-w-6xl mx-auto">
|
|
<motion.div
|
|
className="text-center"
|
|
initial={{ opacity: 0 }}
|
|
whileInView={{ opacity: 1 }}
|
|
viewport={{ once: true }}
|
|
transition={{ duration: 0.6 }}
|
|
>
|
|
{/* Brand */}
|
|
<div className="mb-4">
|
|
<h3 className="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-cyan-400">
|
|
Kit
|
|
</h3>
|
|
</div>
|
|
|
|
{/* Links */}
|
|
<div className="flex justify-center gap-8 mb-6 text-sm">
|
|
<a
|
|
href="https://pivoine.art"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-gray-400 hover:text-purple-400 transition-colors"
|
|
>
|
|
pivoine.art
|
|
</a>
|
|
</div>
|
|
|
|
{/* Copyright */}
|
|
<p className="text-gray-500 text-sm">
|
|
© {new Date().getFullYear()} Kit. Built with Next.js & Tailwind CSS.
|
|
</p>
|
|
</motion.div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|