File tree 2 files changed +12
-10
lines changed
2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,11 @@ import Version from "@/components/version";
2
2
3
3
const Footer = ( ) => {
4
4
return (
5
- < footer className = { "text-black-400 dark:text-gray-300 text-center" } >
5
+ < footer
6
+ className = {
7
+ "fixed bottom-0 left-0 p-2 text-xs text-gray-500 dark:text-gray-400"
8
+ }
9
+ >
6
10
< Version />
7
11
</ footer >
8
12
) ;
Original file line number Diff line number Diff line change @@ -4,15 +4,13 @@ import Link from "next/link";
4
4
const Version = async ( ) => {
5
5
const version = await getVersionString ( ) ;
6
6
return (
7
- < div className = { "flex flex-col items-center justify-center" } >
8
- < Link
9
- href = { version ?. url || "#" }
10
- className = { "text-gray-500 pb-4" }
11
- target = { "_blank" }
12
- >
13
- { version . version || "Unknown" }
14
- </ Link >
15
- </ div >
7
+ < Link
8
+ href = { version ?. url || "#" }
9
+ className = { "text-gray-500" }
10
+ target = { "_blank" }
11
+ >
12
+ { version . version || "Unknown" }
13
+ </ Link >
16
14
) ;
17
15
} ;
18
16
You can’t perform that action at this time.
0 commit comments