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

@@ -11,7 +11,7 @@
/> />
<link rel="apple-touch-icon" href="/logo192.png" /> <link rel="apple-touch-icon" href="/logo192.png" />
<link rel="manifest" href="/manifest.json" /> <link rel="manifest" href="/manifest.json" />
<title>Genesis - La Salle</title> <title>Acad-IA - La Salle</title>
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>

View File

@@ -1,6 +1,6 @@
{ {
"short_name": "Genesis", "short_name": "Acad-IA",
"name": "Genesis - La Salle", "name": "Acad-IA - La Salle",
"icons": [ "icons": [
{ {
"src": "favicon.ico", "src": "favicon.ico",

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"> <div className="min-h-screen flex flex-col bg-gradient-to-br from-slate-150 via-slate-200 to-primary">
{/* Navbar */} {/* Navbar */}
<header className="flex items-center justify-between px-10 py-6 border-b border-slate-700/50"> <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' }}> <Link to="/login" search={{ redirect: '/planes' }}>
<Button variant="outline" className="border-slate-500 hover:bg-slate-700/50"> <Button variant="outline" className="border-slate-500 hover:bg-slate-700/50">
Iniciar sesión Iniciar sesión
@@ -23,7 +23,7 @@ function App() {
{/* Hero */} {/* Hero */}
<main className="flex-1 flex flex-col items-center justify-center text-center px-6"> <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"> <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> </h2>
<p className="text-lg md:text-xl max-w-2xl mb-8"> <p className="text-lg md:text-xl max-w-2xl mb-8">
El sistema académico diseñado para transformar la gestión universitaria. 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" /> Comenzar <ArrowRight className="ml-2 h-5 w-5" />
</Button> </Button>
</Link> </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> </div>
</main> </main>
{/* Footer */} {/* Footer */}
<footer className="py-6 text-center text-sm border-t border-slate-700/50"> <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> </footer>
</div> </div>
) )