mirror of
https://github.com/escalante29/healthy-fit.git
synced 2026-03-21 10:28:46 +01:00
Test CI/CD pipeline: add API version, update Login page
All checks were successful
Deploy to VPS / deploy (push) Successful in 26s
All checks were successful
Deploy to VPS / deploy (push) Successful in 26s
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -35,4 +35,4 @@ app.include_router(api_router, prefix="/api/v1")
|
|||||||
|
|
||||||
@app.get("/")
|
@app.get("/")
|
||||||
def read_root():
|
def read_root():
|
||||||
return {"message": "Welcome to Healthy Fit API"}
|
return {"message": "Welcome to Healthy Fit API", "version": "1.0.0"}
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ const Login = () => {
|
|||||||
return (
|
return (
|
||||||
<div className="flex min-h-screen items-center justify-center bg-base text-content transition-colors">
|
<div className="flex min-h-screen items-center justify-center bg-base text-content transition-colors">
|
||||||
<div className="w-full max-w-md p-8 bg-surface rounded-2xl shadow-lg border border-border">
|
<div className="w-full max-w-md p-8 bg-surface rounded-2xl shadow-lg border border-border">
|
||||||
<Heading level={2} className="mb-6 text-center text-primary">HealthyFit Login</Heading>
|
<Heading level={2} className="mb-6 text-center text-primary">🍗 HealthyFit Login 🏋🏽♂️</Heading>
|
||||||
{error && <ErrorMessage className="mb-4 text-center">{error}</ErrorMessage>}
|
{error && <ErrorMessage className="mb-4 text-center">{error}</ErrorMessage>}
|
||||||
<form onSubmit={handleSubmit} className="space-y-6">
|
<form onSubmit={handleSubmit} className="space-y-6">
|
||||||
<Field>
|
<Field>
|
||||||
|
|||||||
Reference in New Issue
Block a user