Files
ACVE/components/Footer.tsx
2026-02-17 00:07:00 +00:00

11 lines
380 B
TypeScript
Executable File

export default function Footer() {
return (
<footer className="border-t bg-muted/30">
<div className="mx-auto flex w-full max-w-[1300px] items-center justify-between px-4 py-6 text-sm text-muted-foreground">
<span className="font-medium">ACVE Centro de Estudios</span>
<span>Professional legal English learning</span>
</div>
</footer>
);
}