完善不可识别Scheme的警告页面。

This commit is contained in:
徐涛
2025-01-24 15:17:07 +08:00
parent f9f984a1b4
commit 20757a789a
5 changed files with 17 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
@layer pages {
.corrupted {
font-size: var(--font-size-xl);
color: var(--color-danger);
}
}

View File

@@ -0,0 +1,8 @@
import styles from './CorruptedScheme.module.css';
export function CorruptedScheme() {
return (
<div className="center">
<div className={styles.corrupted}>Unrecognizable or corrupted scheme</div>
</div>
);
}

View File

@@ -1,3 +0,0 @@
export function UnknownScheme() {
return <div>Unknown or currupted scheme</div>;
}