feat: update project name from "Génesis" to "Acad-IA" in HTML and manifest files; reflect branding changes in the App component

This commit is contained in:
2025-08-27 08:36:44 -06:00
parent 196aea5df9
commit 406abfad61
3 changed files with 6 additions and 9 deletions

View File

@@ -12,7 +12,7 @@ function App() {
<div className="min-h-screen flex flex-col bg-gradient-to-br from-slate-150 via-slate-200 to-primary">
{/* Navbar */}
<header className="flex items-center justify-between px-10 py-6 border-b border-slate-700/50">
<h1 className="text-2xl font-mono tracking-tight">Génesis</h1>
<h1 className="text-2xl font-mono tracking-tight">Acad-IA</h1>
<Link to="/login" search={{ redirect: '/planes' }}>
<Button variant="outline" className="border-slate-500 hover:bg-slate-700/50">
Iniciar sesión
@@ -23,7 +23,7 @@ function App() {
{/* Hero */}
<main className="flex-1 flex flex-col items-center justify-center text-center px-6">
<h2 className="text-5xl md:text-6xl font-mono font-bold mb-6">
Bienvenido a <span className="text-primary">Génesis</span>
Bienvenido a <span className="text-primary">Acad-IA</span>
</h2>
<p className="text-lg md:text-xl max-w-2xl mb-8">
El sistema académico diseñado para transformar la gestión universitaria.
@@ -36,15 +36,12 @@ function App() {
Comenzar <ArrowRight className="ml-2 h-5 w-5" />
</Button>
</Link>
<Button size="lg" variant="outline" className="rounded-2xl px-6 py-3 text-lg font-mono border-slate-600 hover:bg-slate-100/50">
Conoce más
</Button>
</div>
</main>
{/* Footer */}
<footer className="py-6 text-center text-sm border-t border-slate-700/50">
© {new Date().getFullYear()} Génesis Universidad La Salle
© {new Date().getFullYear()} Acad-IA Universidad La Salle
</footer>
</div>
)