Document location adjustment

This commit is contained in:
yoan
2024-10-20 17:44:54 +08:00
parent 2d275a14ab
commit 21670f64d1
3 changed files with 15 additions and 6 deletions

View File

@@ -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 (
<div className="fixed right-0 bottom-0 w-full flex justify-between p-5">
<div className=""></div>
<div className={cn("w-full flex pb-5 ", className)}>
<div className="text-muted-foreground text-sm hover:text-stone-900 dark:hover:text-stone-200 flex">
<a href="https://docs.certimate.me" target="_blank" className="flex items-center">
<BookOpen size={16} />
@@ -25,3 +29,4 @@ const Version = () => {
};
export default Version;