blob: 76b0e408eaad60b57b9a5ae1fa8fd09e5e00fc6e (
plain)
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
|
import { HardDrive, Clock } from "lucide-react"
import { AuthButtons } from "@/components/auth/AuthButtons"
import Link from "next/link"
import { Button } from "@/components/ui/button"
export async function DriveHeader() {
return (
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<HardDrive className="h-6 w-6" />
<h1 className="text-2xl font-bold">FCT Drive</h1>
</div>
<div className="flex items-center gap-2">
<Link href="/history">
<Button variant="outline" size="sm">
<Clock className="mr-2 h-4 w-4" />
History
</Button>
</Link>
<AuthButtons />
</div>
</div>
)
}
|