First commit

This commit is contained in:
mdares
2026-02-07 18:08:42 -06:00
commit b7a86a2d1c
57 changed files with 9188 additions and 0 deletions

10
components/Footer.tsx Normal file
View File

@@ -0,0 +1,10 @@
export default function Footer() {
return (
<footer className="border-t border-slate-300 bg-[#f7f7f8]">
<div className="mx-auto flex w-full max-w-[1300px] items-center justify-between px-4 py-5 text-sm text-slate-600">
<span>ACVE Centro de Estudios</span>
<span>Professional legal English learning</span>
</div>
</footer>
);
}