style: remove card wrapper from error page
Some checks failed
Build and Push Backend Image / build (push) Failing after 27s
Build and Push Frontend Image / build (push) Successful in 5m7s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 17:28:11 +01:00
parent 19d29cbfc6
commit ac63e59906

View File

@@ -2,7 +2,6 @@
import { _ } from "svelte-i18n"; import { _ } from "svelte-i18n";
import { page } from "$app/state"; import { page } from "$app/state";
import { Button } from "$lib/components/ui/button"; import { Button } from "$lib/components/ui/button";
import { Card, CardContent } from "$lib/components/ui/card";
import PeonyIcon from "$lib/components/icon/peony-icon.svelte"; import PeonyIcon from "$lib/components/icon/peony-icon.svelte";
import PeonyBackground from "$lib/components/background/peony-background.svelte"; import PeonyBackground from "$lib/components/background/peony-background.svelte";
import Meta from "$lib/components/meta/meta.svelte"; import Meta from "$lib/components/meta/meta.svelte";
@@ -21,11 +20,7 @@
<!-- Content --> <!-- Content -->
<div class="relative z-10 container mx-auto px-4 text-center"> <div class="relative z-10 container mx-auto px-4 text-center">
<div class="max-w-2xl mx-auto"> <div class="max-w-2xl mx-auto">
<!-- Premium Glassmorphism Card --> <div class="py-12">
<Card
class="bg-gradient-to-br from-card/25 via-card/30 to-card/20 backdrop-blur-2xl shadow-2xl shadow-primary/20"
>
<CardContent class="p-12">
<!-- 404 Animation --> <!-- 404 Animation -->
<div class="mb-8"> <div class="mb-8">
<div <div
@@ -92,8 +87,7 @@
> >
</div> </div>
</div> </div>
</CardContent> </div>
</Card>
</div> </div>
</div> </div>