8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
export function Footer() {
|
|
return (
|
|
<footer className="mt-8 text-xs text-slate-500">
|
|
Copyright 2026, Brainster Next. All rights reserved.
|
|
</footer>
|
|
);
|
|
}
|