* 🔧 Add Tailwind, update dependencies and config files * ✨ Introduce new Shadcn components and remove old ones * 🔧 Update dependencies * Add new components.json file * 🔥 Remove Chakra UI files * 🔧 Add ThemeProvider component and integrate it into main * 🔥 Remove common components * Update primary color * ✨ Add new components * ✨ Add AuthLayout component * 🔧 Add utility function cn * 🔧 Refactor devtools integration and update dependencies * ✨ Add Footer and Error components * ♻️ Update Footer * 🔥 Remove utils * ♻️ Refactor error handling in useAuth * ♻️ Refactor useCustomToast * ♻️ Refactor Login component and form handling * ♻️ Refactor SignUp component and form handling * 🔧 Update dependencies * ♻️ Refactor RecoverPassword component and form handling * ♻️ Refactor ResetPassword and form handling * ♻️ Add error component to root route * ♻️ Refactor error handling in utils * ♻️ Update buttons * 🍱 Add icons and logos assets * ♻️ Refactor Sidebar component * 🎨 Format * ♻️ Refactor ThemeProvider * ♻️ Refactor Common components * 🔥 Remove old Appearance component * ✨ Add Sidebar components * ♻️ Refactor DeleteAccount components * ♻️ Refactor ChangePassword component * ♻️ Refactor UserSettings * ✨ Add TanStack table * ♻️ Update SignUp * ✨ Add Select component * 🎨 Format * ♻️ Update Footer * ✨ Add useCopyToClipboard hook * 🎨 Tweak table styles * 🎨 Tweak styling * ♻️ Refactor AddUser and AddItem components * ♻️ Update DeleteConfirmation * ✅ Update tests * ✅ Update tests * ✅ Fix tests * ✨ Add DataTable for item and admin management * ♻️ Refactor DeleteUser and DeleteItem components * ✅ Fix tests * ♻️ Refactor EditUser and EditItem components * ♻️ Refactor UserInformation component * 🎨 Format * ♻️ Refactor pending components * 🎨 Format * ✅ Update tests * ✅ Update tests * ✅ Fix test * ♻️ Minor tweaks * ♻️ Update social media links
61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
TypeScript
import { Link } from "@tanstack/react-router"
|
|
|
|
import { useTheme } from "@/components/theme-provider"
|
|
import { cn } from "@/lib/utils"
|
|
import icon from "/assets/images/fastapi-icon.svg"
|
|
import iconLight from "/assets/images/fastapi-icon-light.svg"
|
|
import logo from "/assets/images/fastapi-logo.svg"
|
|
import logoLight from "/assets/images/fastapi-logo-light.svg"
|
|
|
|
interface LogoProps {
|
|
variant?: "full" | "icon" | "responsive"
|
|
className?: string
|
|
asLink?: boolean
|
|
}
|
|
|
|
export function Logo({
|
|
variant = "full",
|
|
className,
|
|
asLink = true,
|
|
}: LogoProps) {
|
|
const { resolvedTheme } = useTheme()
|
|
const isDark = resolvedTheme === "dark"
|
|
|
|
const fullLogo = isDark ? logoLight : logo
|
|
const iconLogo = isDark ? iconLight : icon
|
|
|
|
const content =
|
|
variant === "responsive" ? (
|
|
<>
|
|
<img
|
|
src={fullLogo}
|
|
alt="FastAPI"
|
|
className={cn(
|
|
"h-6 w-auto group-data-[collapsible=icon]:hidden",
|
|
className,
|
|
)}
|
|
/>
|
|
<img
|
|
src={iconLogo}
|
|
alt="FastAPI"
|
|
className={cn(
|
|
"size-5 hidden group-data-[collapsible=icon]:block",
|
|
className,
|
|
)}
|
|
/>
|
|
</>
|
|
) : (
|
|
<img
|
|
src={variant === "full" ? fullLogo : iconLogo}
|
|
alt="FastAPI"
|
|
className={cn(variant === "full" ? "h-6 w-auto" : "size-5", className)}
|
|
/>
|
|
)
|
|
|
|
if (!asLink) {
|
|
return content
|
|
}
|
|
|
|
return <Link to="/">{content}</Link>
|
|
}
|