add motd to the server page
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s
This commit is contained in:
7
src/app/components/card.tsx
Normal file
7
src/app/components/card.tsx
Normal file
@ -0,0 +1,7 @@
|
||||
export function Card({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>): JSX.Element {
|
||||
return <div className="bg-secondary rounded-lg p-4">{children}</div>;
|
||||
}
|
Reference in New Issue
Block a user