Last active
April 20, 2025 21:10
-
-
Save codigoconjuan/3a4fbf65bb60fb101371c88f6301ed09 to your computer and use it in GitHub Desktop.
Página de Inicio CashTrackr Next.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Logo from "@/components/ui/Logo"; | |
import Link from "next/link"; | |
export default function Home() { | |
return ( | |
<> | |
<header className=" bg-purple-950 py-5"> | |
<div className="max-w-3xl mx-auto flex flex-col lg:flex-row items-center"> | |
<div className="w-96 lg:w-[500px]"> | |
<Logo /> | |
</div> | |
<nav className="flex flex-col lg:flex-row lg:justify-end gap-5 w-full "> | |
<Link | |
href='/auth/login' | |
className="font-bold text-white hover:text-amber-500 uppercase text-sm text-center" | |
>Iniciar Sesión</Link> | |
<Link | |
href='/auth/register' | |
className="font-bold text-white hover:text-amber-500 uppercase text-sm text-center" | |
>Registrarme</Link> | |
</nav> | |
</div> | |
</header> | |
<main className=" max-w-3xl mx-auto p-5 space-y-5 mt-20"> | |
<h1 className="font-black text-4xl lg:text-6xl text-purple-950">Administrador de Gastos</h1> | |
<p className="text-3xl font-bold">controla tus <span className="text-amber-500">finanzas</span></p> | |
<p className="text-lg">Domina tus finanzas con nuestro Administrador de Gastos. Simplifica la gestión de tus ingresos y egresos en un solo lugar, de manera intuitiva y eficiente. Toma el control total de tus finanzas personales o empresariales con nuestra plataforma fácil de usar.</p> | |
<h2 className="font-black text-4xl text-purple-950 ">Ventajas de CashTrackr</h2> | |
<ol className="grid grid-cols-1 gap-5 items-start"> | |
<li className="p-5 shadow-lg text-lg"> | |
<span className="text-purple-950 font-black">Organización sin Esfuerzo: </span> | |
Clasifica y visualiza tus gastos de forma clara y ordenada, sin complicaciones con nuestro panel amigable y fácil de usar. | |
</li> | |
<li className="p-5 shadow-lg text-lg"> | |
<span className="text-purple-950 font-black">Presupuestación Inteligente: </span> | |
Establece objetivos financieros realistas y sigue tu progreso con nuestras herramientas de presupuestación inteligente. | |
</li> | |
<li className="p-5 shadow-lg text-lg"> | |
<span className="text-purple-950 font-black">Acceso en cualquier lugar: </span> | |
Nuestra plataforma está disponible para que puedas gestionar tus finanzas desde donde te encuentres. | |
</li> | |
<li className="p-5 shadow-lg text-lg"> | |
<span className="text-purple-950 font-black">Seguridad Garantizada: </span> | |
Protegemos tus datos con los más altos estándares de seguridad, para que puedas utilizar nuestra plataforma con total tranquilidad. | |
</li> | |
</ol> | |
</main> | |
<nav className="flex flex-col lg:flex-row lg:justify-between gap-5 mt-10 pb-20 max-w-3xl mx-auto "> | |
<Link | |
href="/auth/register" | |
className="text-gray-500 text-sm uppercase text-center" | |
>¿No tienes cuenta? Crea una</Link> | |
<Link | |
href="/auth/login" | |
className="text-gray-500 text-sm uppercase text-center" | |
>¿Ya tienes cuenta? Iniciar Sesión</Link> | |
</nav> | |
</> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
:)