fix: remove unnecessary max-width classes from various components
Build Check / build (push) Successful in 45s
Build Check / push-image (push) Successful in 53s
Build Check / deploy-coolify (push) Successful in 6s

feat: add launch configuration for development environment
This commit is contained in:
Space-Banane
2026-07-08 18:55:33 +02:00
parent 1148f6f22a
commit 2045e95929
12 changed files with 43 additions and 15 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import type { Project } from "../types";
export function ProjectCard({ project }: { project: Project }) {
return (
<div className="group relative mx-auto flex w-full max-w-[20rem] flex-col rounded-2xl border border-white/10 bg-gradient-to-br from-white/10 to-white/5 p-4 backdrop-blur-sm transition-all duration-300 hover:-translate-y-1 hover:border-purple-500/30 hover:shadow-2xl hover:shadow-purple-500/10 sm:max-w-none sm:p-6">
<div className="group relative flex w-full flex-col rounded-2xl border border-white/10 bg-gradient-to-br from-white/10 to-white/5 p-4 backdrop-blur-sm transition-all duration-300 hover:-translate-y-1 hover:border-purple-500/30 hover:shadow-2xl hover:shadow-purple-500/10 sm:p-6">
{project.image && (
<div className="relative mb-4 flex aspect-video items-center justify-center overflow-hidden rounded-xl bg-black/20 sm:mb-6">
<div className="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300" />