refactor: restructure assets into /assets directory to prevent Apache alias conflicts

This commit is contained in:
Chneemann 2026-07-25 11:01:06 +02:00
parent 1d32b22193
commit f179b1aedb
6 changed files with 4 additions and 4 deletions

View file

Before

Width:  |  Height:  |  Size: 931 B

After

Width:  |  Height:  |  Size: 931 B

View file

Before

Width:  |  Height:  |  Size: 1,008 B

After

Width:  |  Height:  |  Size: 1,008 B

View file

Before

Width:  |  Height:  |  Size: 844 B

After

Width:  |  Height:  |  Size: 844 B

View file

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 73 KiB

View file

@ -54,7 +54,7 @@ export default function Hero() {
<div className="relative group h-auto w-70 lg:w-66 md:w-59 aspect-5/6"> <div className="relative group h-auto w-70 lg:w-66 md:w-59 aspect-5/6">
<div className="relative w-full h-full rounded-2xl border-5 border-slate-800 bg-slate-900 overflow-hidden flex items-center justify-center group-hover:border-blue-500/50 transition-colors duration-300"> <div className="relative w-full h-full rounded-2xl border-5 border-slate-800 bg-slate-900 overflow-hidden flex items-center justify-center group-hover:border-blue-500/50 transition-colors duration-300">
<img <img
src="/images/me.png" src="/assets/images/me.png"
alt="André Kempf" alt="André Kempf"
className="w-full h-full object-cover transition-transform duration-500 group-hover:scale-102" className="w-full h-full object-cover transition-transform duration-500 group-hover:scale-102"
/> />

View file

@ -4,17 +4,17 @@ const socialLinks = [
{ {
name: "Codeberg", name: "Codeberg",
href: "https://codeberg.org/chneemann", href: "https://codeberg.org/chneemann",
icon: "/icons/codeberg.svg", icon: "/assets/icons/codeberg.svg",
}, },
{ {
name: "LinkedIn", name: "LinkedIn",
href: "https://linkedin.com/in/andre-kempf", href: "https://linkedin.com/in/andre-kempf",
icon: "/icons/linkedin.svg", icon: "/assets/icons/linkedin.svg",
}, },
{ {
name: "GitHub (Legacy)", name: "GitHub (Legacy)",
href: "https://github.com/chneemann", href: "https://github.com/chneemann",
icon: "/icons/github.svg", icon: "/assets/icons/github.svg",
}, },
]; ];