-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.tsx
96 lines (89 loc) · 2.67 KB
/
footer.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
"use client";
import {useEffect, useState} from "react";
import Link from "next/link";
import {GitCommit, Github, HeartIcon} from "lucide-react";
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip"
import { buttonVariants } from "./ui/button";
export function Footer() {
return (
<footer className="border-t w-full h-16">
<div className="container flex items-center sm:justify-between justify-center sm:gap-0 gap-4 h-full text-muted-foreground text-sm flex-wrap sm:py-0 py-3 max-sm:px-4">
<div className="flex items-center gap-3">
<p className="text-center">
Build by{" "}
<Link
className="px-1 underline underline-offset-2"
href="https://nicholasadamou.com"
>
Nicholas Adamou
</Link>
</p>
</div>
<div className="gap-4 items-center hidden md:flex">
<FooterButtons />
</div>
</div>
</footer>
);
}
export function FooterButtons() {
const [commitHash, setCommitHash] = useState<string | null>(null)
useEffect(() => {
const fetchCommitHash = async () => {
try {
const response = await fetch('/api/commit')
if (response.ok) {
const data = await response.json()
setCommitHash(data.commitHash)
} else {
console.error('Failed to fetch commit hash')
}
} catch (error) {
console.error('Error fetching commit hash:', error)
}
}
fetchCommitHash()
}, [])
return (
<>
{commitHash && (
<TooltipProvider>
<Tooltip>
<TooltipTrigger asChild>
<div>
<Link
style={{ borderRadius: "2em" }}
className={buttonVariants({ variant: "outline", size: "sm" })}
href={`https://github.com/nicholasadamou/learn-git/commit/${commitHash}`}
target="_blank"
rel="noopener noreferrer"
>
<GitCommit className="w-4 h-4" />
<span className="font-mono">{commitHash.slice(0, 7)}</span>
</Link>
</div>
</TooltipTrigger>
<TooltipContent>
<p>View latest commit</p>
</TooltipContent>
</Tooltip>
</TooltipProvider>
)}
<Link
className="text-sm hover:text-primary transition-colors duration-200 text-muted-foreground flex items-center gap-1"
href="https://github.com/nicholasadamou/learn-git"
target="_blank"
rel="noopener noreferrer"
>
<Github className="w-4 h-4" />
</Link>
<Link
href="https://github.com/sponsors/nicholasadamou"
className={buttonVariants({ variant: "outline", size: "sm" })}
>
<HeartIcon className="h-4 w-4 mr-2 text-red-600 fill-current" />
Sponsor
</Link>
</>
);
}