first commit

This commit is contained in:
2026-01-23 17:28:21 +07:00
commit 29ff8992b9
331 changed files with 30545 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { HTMLAttributes } from 'react';
export default function ApplicationLogo({ className = '', ...props }: HTMLAttributes<HTMLImageElement>) {
return (
<img
{...props}
src="/brand/Nihonbuzz-Academy-Light-LS-Regular.png"
alt="Nihonbuzz Academy"
className={className}
/>
);
}