mirror of
https://github.com/Xevion/linkpulse.git
synced 2026-01-31 08:24:45 -06:00
Disable quotes, fix padding & rendering, update CHANGELOG.md
This commit is contained in:
+1
-1
@@ -20,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- backend: Simple `/health` & `/api/migrations` endpoint tests
|
- backend: Simple `/health` & `/api/migrations` endpoint tests
|
||||||
- backend: `utc_now` helper function
|
- backend: `utc_now` helper function
|
||||||
- backend: `pwdlib[argon2]`, `pytest` (`pytest-cov`, `pytest-xdist`), `limits`, `httpx`, `email-validator` pacakges
|
- backend: `pwdlib[argon2]`, `pytest` (`pytest-cov`, `pytest-xdist`), `limits`, `httpx`, `email-validator` pacakges
|
||||||
- frontend: Added `clsx` package
|
- frontend: Re-initialized with `vite` template, setup `@tanstack/router` & `shadcn` components.
|
||||||
|
|
||||||
## Changed
|
## Changed
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import { Icons } from "@/components/icons";
|
|||||||
function Login() {
|
function Login() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="container relative h-[100vh] flex-col items-center justify-center md:grid lg:max-w-none lg:grid-cols-2 lg:px-0">
|
<div className="container relative h-[100vh] flex-col items-center grid w-screen lg:max-w-none lg:grid-cols-2 lg:px-0">
|
||||||
<a
|
<a
|
||||||
href="/"
|
href="/"
|
||||||
className={cn(
|
className={cn(
|
||||||
@@ -22,25 +22,27 @@ function Login() {
|
|||||||
>
|
>
|
||||||
Linkpulse
|
Linkpulse
|
||||||
</a>
|
</a>
|
||||||
<div className="relative hidden h-full flex-col bg-muted p-10 text-white dark:border-r lg:flex">
|
<div className="relative hidden h-full flex-col grow bg-muted p-10 text-white dark:border-r lg:flex">
|
||||||
<div className="absolute inset-0 bg-zinc-900" />
|
<div className="absolute inset-0 bg-zinc-900" />
|
||||||
<div className="relative z-20 flex items-center text-lg font-medium">
|
<div className="relative z-20 flex items-center text-lg font-medium">
|
||||||
<Icons.linkpulse className="mr-2 h-6 w-6 text-white" />
|
<Icons.linkpulse className="mr-2 h-6 w-6 text-white" />
|
||||||
Linkpulse
|
Linkpulse
|
||||||
</div>
|
</div>
|
||||||
<div className="relative z-20 mt-auto">
|
<div className="z-20 mt-auto space-y-2">
|
||||||
<blockquote className="space-y-2">
|
{/* <blockquote className="space-y-2">
|
||||||
<p className="text-lg">
|
<p className="text-lg">
|
||||||
“This library has saved me countless hours of work and
|
“This library has saved me countless hours of work and
|
||||||
helped me deliver stunning designs to my clients faster than
|
helped me deliver stunning designs to my clients faster than
|
||||||
ever before.”
|
ever before.”
|
||||||
</p>
|
</p>
|
||||||
<footer className="text-sm">Sofia Davis</footer>
|
<footer className="text-sm">Sofia Davis</footer>
|
||||||
</blockquote>
|
</blockquote> */}
|
||||||
|
{/* <p className="text-lg"></p>
|
||||||
|
<footer className="text-sm"></footer> */}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="lg:p-8">
|
<div className="px-6">
|
||||||
<div className="mx-auto flex w-full flex-col justify-center space-y-6 sm:w-[350px]">
|
<div className="mx-auto flex w-full flex-col space-y-6 sm:w-[350px]">
|
||||||
<div className="flex flex-col space-y-2 text-center">
|
<div className="flex flex-col space-y-2 text-center">
|
||||||
<h1 className="text-2xl font-semibold tracking-tight">
|
<h1 className="text-2xl font-semibold tracking-tight">
|
||||||
Create an account
|
Create an account
|
||||||
@@ -50,7 +52,7 @@ function Login() {
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<UserAuthForm />
|
<UserAuthForm />
|
||||||
<p className="px-8 text-center text-sm text-muted-foreground">
|
<p className="text-center text-sm text-muted-foreground">
|
||||||
By clicking continue, you agree to our{" "}
|
By clicking continue, you agree to our{" "}
|
||||||
<a
|
<a
|
||||||
href="/terms"
|
href="/terms"
|
||||||
|
|||||||
Reference in New Issue
Block a user