Chore: Rebranding Gatehouse to Secuird (UI)
This commit is contained in:
@@ -1,21 +1,21 @@
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
interface GatehouseLogoProps {
|
||||
interface SecuirdLogoProps {
|
||||
size?: "sm" | "md" | "lg";
|
||||
variant?: "default" | "light";
|
||||
className?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gatehouse Logo - Abstract gate/doorway mark
|
||||
* Secuird Logo - Abstract gate/doorway mark
|
||||
* Represents controlled entry and policy enforcement
|
||||
* Two vertical pillars forming a gateway with negative space
|
||||
*/
|
||||
export function GatehouseLogo({
|
||||
export function SecuirdLogo({
|
||||
size = "md",
|
||||
variant = "default",
|
||||
className
|
||||
}: GatehouseLogoProps) {
|
||||
}: SecuirdLogoProps) {
|
||||
const sizeClasses = {
|
||||
sm: "w-8 h-8",
|
||||
md: "w-9 h-9",
|
||||
@@ -65,9 +65,9 @@ const isDev = import.meta.env.DEV;
|
||||
const originalFetch = window.fetch;
|
||||
|
||||
// Avoid patching multiple times during HMR
|
||||
const globalAny = window as unknown as { __gatehouseFetchPatched?: boolean };
|
||||
if (isDev && !globalAny.__gatehouseFetchPatched) {
|
||||
globalAny.__gatehouseFetchPatched = true;
|
||||
const globalAny = window as unknown as { __secuirdFetchPatched?: boolean };
|
||||
if (isDev && !globalAny.__secuirdFetchPatched) {
|
||||
globalAny.__secuirdFetchPatched = true;
|
||||
|
||||
try {
|
||||
window.fetch = async function (input, init) {
|
||||
@@ -165,9 +165,9 @@ if (isDev && !globalAny.__gatehouseFetchPatched) {
|
||||
};
|
||||
} catch (patchError) {
|
||||
// Log any errors during fetch patching with full stack trace
|
||||
console.error("[Gatehouse DevTools] Failed to patch fetch:", patchError);
|
||||
console.error("[Secuird DevTools] Failed to patch fetch:", patchError);
|
||||
if (patchError instanceof Error) {
|
||||
console.error("[Gatehouse DevTools] Stack trace:", patchError.stack);
|
||||
console.error("[Secuird DevTools] Stack trace:", patchError.stack);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -220,7 +220,7 @@ export default function ApiDevTools() {
|
||||
{/* Header */}
|
||||
<div className="flex items-center justify-between px-4 py-2 border-b border-slate-700 bg-slate-800">
|
||||
<div className="flex items-center gap-3">
|
||||
<span className="font-semibold text-sm">Gatehouse API DevTools</span>
|
||||
<span className="font-semibold text-sm">Secuird API DevTools</span>
|
||||
<Badge variant="outline" className="text-xs border-slate-600">
|
||||
{logs.length} requests
|
||||
</Badge>
|
||||
|
||||
@@ -97,7 +97,7 @@ export default function MfaEnforcementLayout() {
|
||||
<header className="h-14 border-b border-border bg-card flex items-center justify-between px-4 flex-shrink-0">
|
||||
<div className="flex items-center gap-3">
|
||||
<Shield className="w-5 h-5 text-primary" />
|
||||
<span className="font-semibold text-foreground">Gatehouse</span>
|
||||
<span className="font-semibold text-foreground">Secuird</span>
|
||||
</div>
|
||||
<div className="flex items-center gap-2">
|
||||
<span className="text-sm text-muted-foreground">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Outlet, Link } from "react-router-dom";
|
||||
import { GatehouseLogo } from "@/components/branding/GatehouseLogo";
|
||||
import { SecuirdLogo } from "@/components/branding/SecuirdLogo";
|
||||
|
||||
export default function PublicLayout() {
|
||||
return (
|
||||
@@ -11,8 +11,8 @@ export default function PublicLayout() {
|
||||
<header className="relative z-10 w-full py-6 px-4">
|
||||
<div className="max-w-md mx-auto">
|
||||
<Link to="/" className="flex items-center gap-2.5 justify-center">
|
||||
<GatehouseLogo size="md" />
|
||||
<span className="text-xl font-semibold text-foreground tracking-tight">Gatehouse</span>
|
||||
<SecuirdLogo size="md" />
|
||||
<span className="text-xl font-semibold text-foreground tracking-tight">Secuird</span>
|
||||
</Link>
|
||||
</div>
|
||||
</header>
|
||||
@@ -28,7 +28,7 @@ export default function PublicLayout() {
|
||||
<footer className="relative z-10 py-6 px-4">
|
||||
<div className="max-w-md mx-auto text-center">
|
||||
<p className="text-sm text-muted-foreground">
|
||||
© {new Date().getFullYear()} Gatehouse. Identity & Access.
|
||||
© {new Date().getFullYear()} Secuird. Identity & Access.
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
@@ -18,7 +18,7 @@ import {
|
||||
Monitor,
|
||||
ShieldAlert,
|
||||
} from "lucide-react";
|
||||
import { GatehouseLogo } from "@/components/branding/GatehouseLogo";
|
||||
import { SecuirdLogo } from "@/components/branding/SecuirdLogo";
|
||||
import { NavLink } from "@/components/NavLink";
|
||||
import { useAuth } from "@/contexts/AuthContext";
|
||||
import {
|
||||
@@ -90,10 +90,10 @@ export function AppSidebar() {
|
||||
{/* Logo */}
|
||||
<SidebarHeader className="p-4 border-b border-sidebar-border">
|
||||
<div className="flex items-center gap-3">
|
||||
<GatehouseLogo size="sm" variant="light" />
|
||||
<SecuirdLogo size="sm" variant="light" />
|
||||
{!collapsed && (
|
||||
<span className="text-lg font-semibold text-sidebar-foreground tracking-tight">
|
||||
Gatehouse
|
||||
Secuird
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
|
||||
@@ -275,7 +275,7 @@ export function TotpEnrollmentWizard({
|
||||
</div>
|
||||
|
||||
<p className="text-xs text-muted-foreground">
|
||||
Open your authenticator app and enter the 6-digit code shown for Gatehouse.
|
||||
Open your authenticator app and enter the 6-digit code shown for Secuird.
|
||||
</p>
|
||||
|
||||
<div className="flex justify-end gap-2 pt-2">
|
||||
|
||||
Reference in New Issue
Block a user