优化细节
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-01-04 16:54:31 +08:00
parent 7c70ec1028
commit 6c4a73d857
5 changed files with 4 additions and 38 deletions

View File

@@ -1,16 +0,0 @@
"use client";
interface ACardProps {
children?: React.ReactNode;
className?: string;
}
export default function ACard({ children, className }: ACardProps) {
return (
<div
className={`${className} w-[95dvw] md:w-[61vw] h-96 p-2 md:shadow-2xl rounded-xl`}
>
{children}
</div>
);
}

View File

@@ -1,12 +0,0 @@
"use client";
interface BCardProps {
children?: React.ReactNode;
className?: string;
}
export default function BCard({ children, className }: BCardProps) {
return (
<div className={`${className} rounded-xl p-2 shadow-xl`}>{children}</div>
);
}