✨ New Features: - Complete dark theme redesign with glassmorphism effects - Responsive admin dashboard with collapsible projects list - Enhanced markdown editor with live preview - Project image upload functionality - Improved project management (create, edit, delete, publish/unpublish) - Slug-based project URLs - Legal pages (Impressum, Privacy Policy) - Modern animations with Framer Motion 🔧 Improvements: - Fixed hydration errors with mounted state - Enhanced UI/UX with better spacing and proportions - Improved markdown rendering with custom components - Better project image placeholders with initials - Conditional rendering for GitHub/Live Demo links - Enhanced toolbar with categorized quick actions - Responsive grid layout for admin dashboard 📱 Technical: - Next.js 15 + TypeScript + Tailwind CSS - Local storage for project persistence - Optimized performance and responsive design
166 lines
5.7 KiB
TypeScript
166 lines
5.7 KiB
TypeScript
"use client";
|
|
|
|
import { useState, useEffect } from 'react';
|
|
import { motion } from 'framer-motion';
|
|
import { Github, Linkedin, Mail, Heart } from 'lucide-react';
|
|
import Link from 'next/link';
|
|
|
|
const Footer = () => {
|
|
const [currentYear, setCurrentYear] = useState(2024);
|
|
const [mounted, setMounted] = useState(false);
|
|
|
|
useEffect(() => {
|
|
setCurrentYear(new Date().getFullYear());
|
|
setMounted(true);
|
|
}, []);
|
|
|
|
const socialLinks = [
|
|
{ icon: Github, href: 'https://github.com/Denshooter', label: 'GitHub' },
|
|
{ icon: Linkedin, href: 'https://linkedin.com/in/dkonkol', label: 'LinkedIn' },
|
|
{ icon: Mail, href: 'mailto:contact@dki.one', label: 'Email' }
|
|
];
|
|
|
|
const quickLinks = [
|
|
{ name: 'Home', href: '/' },
|
|
{ name: 'Projects', href: '/projects' },
|
|
{ name: 'About', href: '#about' },
|
|
{ name: 'Contact', href: '#contact' }
|
|
];
|
|
|
|
if (!mounted) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<footer className="relative py-16 px-4 border-t border-gray-800">
|
|
<div className="absolute inset-0 bg-gradient-to-t from-gray-900/50 to-transparent"></div>
|
|
|
|
<div className="relative z-10 max-w-7xl mx-auto">
|
|
<div className="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
|
|
<div className="md:col-span-2">
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
whileInView={{ opacity: 1, y: 0 }}
|
|
viewport={{ once: true }}
|
|
transition={{ duration: 0.6 }}
|
|
>
|
|
<Link href="/" className="text-3xl font-bold gradient-text mb-4 inline-block">
|
|
Dennis Konkol
|
|
</Link>
|
|
<p className="text-gray-400 mb-6 max-w-md leading-relaxed">
|
|
A passionate software engineer and student based in Osnabrück, Germany.
|
|
Creating innovative solutions that make a difference in the digital world.
|
|
</p>
|
|
|
|
<div className="flex space-x-4">
|
|
{socialLinks.map((social) => (
|
|
<motion.a
|
|
key={social.label}
|
|
href={social.href}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
whileHover={{ scale: 1.1, y: -2 }}
|
|
whileTap={{ scale: 0.95 }}
|
|
className="p-3 bg-gray-800/50 hover:bg-gray-700/50 rounded-lg text-gray-300 hover:text-white transition-all duration-200"
|
|
>
|
|
<social.icon size={20} />
|
|
</motion.a>
|
|
))}
|
|
</div>
|
|
</motion.div>
|
|
</div>
|
|
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
whileInView={{ opacity: 1, y: 0 }}
|
|
viewport={{ once: true }}
|
|
transition={{ duration: 0.6, delay: 0.1 }}
|
|
>
|
|
<h3 className="text-lg font-semibold text-white mb-4">Quick Links</h3>
|
|
<ul className="space-y-2">
|
|
{quickLinks.map((link) => (
|
|
<li key={link.name}>
|
|
<Link
|
|
href={link.href}
|
|
className="text-gray-400 hover:text-white transition-colors duration-200"
|
|
>
|
|
{link.name}
|
|
</Link>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</motion.div>
|
|
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
whileInView={{ opacity: 1, y: 0 }}
|
|
viewport={{ once: true }}
|
|
transition={{ duration: 0.6, delay: 0.2 }}
|
|
>
|
|
<h3 className="text-lg font-semibold text-white mb-4">Legal</h3>
|
|
<ul className="space-y-2">
|
|
<li>
|
|
<Link
|
|
href="/legal-notice"
|
|
className="text-gray-400 hover:text-white transition-colors duration-200"
|
|
>
|
|
Impressum
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link
|
|
href="/privacy-policy"
|
|
className="text-gray-400 hover:text-white transition-colors duration-200"
|
|
>
|
|
Privacy Policy
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</motion.div>
|
|
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
whileInView={{ opacity: 1, y: 0 }}
|
|
viewport={{ once: true }}
|
|
transition={{ duration: 0.6, delay: 0.2 }}
|
|
>
|
|
<h3 className="text-lg font-semibold text-white mb-4">Contact</h3>
|
|
<div className="space-y-2 text-gray-400">
|
|
<p>Osnabrück, Germany</p>
|
|
<p>contact@dki.one</p>
|
|
<p>+49 123 456 789</p>
|
|
</div>
|
|
</motion.div>
|
|
</div>
|
|
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20 }}
|
|
whileInView={{ opacity: 1, y: 0 }}
|
|
viewport={{ once: true }}
|
|
transition={{ duration: 0.6, delay: 0.3 }}
|
|
className="pt-8 border-t border-gray-800 text-center"
|
|
>
|
|
<div className="flex flex-col md:flex-row justify-between items-center space-y-4 md:space-y-0">
|
|
<p className="text-gray-400">
|
|
© {currentYear} Dennis Konkol. All rights reserved.
|
|
</p>
|
|
|
|
<div className="flex items-center space-x-2 text-gray-400">
|
|
<span>Made with</span>
|
|
<motion.div
|
|
animate={{ scale: [1, 1.2, 1] }}
|
|
transition={{ duration: 1.5, repeat: Infinity }}
|
|
>
|
|
<Heart size={16} className="text-red-500" />
|
|
</motion.div>
|
|
<span>in Germany</span>
|
|
</div>
|
|
</div>
|
|
</motion.div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|