diff --git a/ui/src/components/certimate/Version.tsx b/ui/src/components/certimate/Version.tsx index f8023ec2..626e8809 100644 --- a/ui/src/components/certimate/Version.tsx +++ b/ui/src/components/certimate/Version.tsx @@ -3,13 +3,17 @@ import { BookOpen } from "lucide-react"; import { Separator } from "@/components/ui/separator"; import { version } from "@/domain/version"; +import { cn } from "@/lib/utils"; -const Version = () => { +type VersionProps = { + className?: string; +}; + +const Version = ({ className }: VersionProps) => { const { t } = useTranslation(); return ( -
-
+
@@ -25,3 +29,4 @@ const Version = () => { }; export default Version; + diff --git a/ui/src/pages/DashboardLayout.tsx b/ui/src/pages/DashboardLayout.tsx index 597587a4..71e6a984 100644 --- a/ui/src/pages/DashboardLayout.tsx +++ b/ui/src/pages/DashboardLayout.tsx @@ -72,6 +72,10 @@ export default function Dashboard() {
+ +
+ +
@@ -137,8 +141,6 @@ export default function Dashboard() {
- -
@@ -146,3 +148,4 @@ export default function Dashboard() { ); } + diff --git a/ui/src/pages/LoginLayout.tsx b/ui/src/pages/LoginLayout.tsx index 5564c40e..9c738610 100644 --- a/ui/src/pages/LoginLayout.tsx +++ b/ui/src/pages/LoginLayout.tsx @@ -12,9 +12,10 @@ const LoginLayout = () => {
- +
); }; export default LoginLayout; +