Refactor OAuth divider component and update README visuals

- Simplified the OAuth divider component with a cleaner layout for improved UI consistency.
- Updated README to include and organize new visuals for key sections, enhancing documentation clarity.
This commit is contained in:
Felipe Cardoso
2025-11-27 19:07:28 +01:00
parent 29074f26a6
commit 1b2e7dde35
6 changed files with 9 additions and 9 deletions

View File

@@ -145,14 +145,17 @@ Full OAuth 2.0 Authorization Server for Model Context Protocol (MCP) and third-p
### Landing Page
![Landing Page](docs/images/landing.png)
### Authentication
![Login Page](docs/images/login.png)
### Admin Dashboard
![Admin Dashboard](docs/images/admin-dashboard.png)
### User Settings
![Settings](docs/images/settings.png)
### Design System
![Components](docs/images/design-system.png)

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

BIN
docs/images/landing.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 KiB

BIN
docs/images/login.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

View File

@@ -144,13 +144,10 @@ function Divider() {
const t = useTranslations('auth.oauth');
return (
<div className="relative">
<div className="absolute inset-0 flex items-center">
<span className="w-full border-t" />
</div>
<div className="relative flex justify-center text-xs uppercase">
<span className="bg-background px-2 text-muted-foreground">{t('divider')}</span>
</div>
<div className="flex items-center gap-4">
<span className="h-px flex-1 bg-border" />
<span className="text-xs uppercase text-muted-foreground">{t('divider')}</span>
<span className="h-px flex-1 bg-border" />
</div>
);
}