feat(web): use company logo PNG in brand mark
Build and Push Images / Build jorgecuadros-api (push) Successful in 2m2s
Build and Push Images / Build jorgecuadros-web (push) Successful in 3m7s

Replace the JC text mark in AppShell and login with the real
company_logo.png. Restyle .brand-mark to host the image (white
rounded bg, object-fit contain). Appbar 38px, login panel 46px.
This commit is contained in:
2026-07-23 22:17:17 -07:00
parent 27b3bd9efc
commit 921a47cbaa
4 changed files with 20 additions and 15 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

+10 -9
View File
@@ -200,19 +200,20 @@ button {
text-decoration: none; text-decoration: none;
} }
.brand-mark { .brand-mark {
width: 34px; width: 38px;
height: 34px; height: 38px;
border-radius: 9px; border-radius: 9px;
background: radial-gradient(circle at 30% 25%, var(--brand-500), var(--brand-700)); background: #fbf8f0;
border: 1px solid rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.18);
display: grid; object-fit: contain;
place-items: center; padding: 3px;
font-family: var(--font-display);
font-weight: 600;
font-size: 16px;
color: #f5efe0;
box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2); box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
} }
.login-brand .brand-mark {
width: 46px;
height: 46px;
border-radius: 10px;
}
.brand-text { .brand-text {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
+5 -3
View File
@@ -65,9 +65,11 @@ export default function LoginPage() {
<aside className="login-aside" aria-hidden="false"> <aside className="login-aside" aria-hidden="false">
<div className="login-aside-top"> <div className="login-aside-top">
<div className="login-brand"> <div className="login-brand">
<span className="brand-mark" aria-hidden> <img
JC src="/images/company_logo.png"
</span> alt=""
className="brand-mark"
/>
<div className="brand-text"> <div className="brand-text">
<span className="brand-name" style={{ color: "#f6f3ec" }}> <span className="brand-name" style={{ color: "#f6f3ec" }}>
Jorge Cuadros Jorge Cuadros
+5 -3
View File
@@ -79,9 +79,11 @@ export function AppShell({ children }: { children: ReactNode }) {
<header className="appbar"> <header className="appbar">
<div className="appbar-inner"> <div className="appbar-inner">
<Link href="/clientes" className="brand"> <Link href="/clientes" className="brand">
<span className="brand-mark" aria-hidden> <img
JC src="/images/company_logo.png"
</span> alt=""
className="brand-mark"
/>
<span className="brand-text"> <span className="brand-text">
<span className="brand-name">Jorge Cuadros</span> <span className="brand-name">Jorge Cuadros</span>
<span className="brand-sub">& Asociados</span> <span className="brand-sub">& Asociados</span>