summaryrefslogtreecommitdiff
path: root/frontend/components/drive/DriveHeader.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/components/drive/DriveHeader.tsx')
-rw-r--r--frontend/components/drive/DriveHeader.tsx14
1 files changed, 2 insertions, 12 deletions
diff --git a/frontend/components/drive/DriveHeader.tsx b/frontend/components/drive/DriveHeader.tsx
index 76b0e40..718d031 100644
--- a/frontend/components/drive/DriveHeader.tsx
+++ b/frontend/components/drive/DriveHeader.tsx
@@ -1,7 +1,5 @@
1import { HardDrive, Clock } from "lucide-react" 1import { HardDrive } from "lucide-react"
2import { AuthButtons } from "@/components/auth/AuthButtons" 2import { AuthButtons } from "@/components/auth/AuthButtons"
3import Link from "next/link"
4import { Button } from "@/components/ui/button"
5 3
6export async function DriveHeader() { 4export async function DriveHeader() {
7 return ( 5 return (
@@ -11,15 +9,7 @@ export async function DriveHeader() {
11 <h1 className="text-2xl font-bold">FCT Drive</h1> 9 <h1 className="text-2xl font-bold">FCT Drive</h1>
12 </div> 10 </div>
13 11
14 <div className="flex items-center gap-2"> 12 <AuthButtons />
15 <Link href="/history">
16 <Button variant="outline" size="sm">
17 <Clock className="mr-2 h-4 w-4" />
18 History
19 </Button>
20 </Link>
21 <AuthButtons />
22 </div>
23 </div> 13 </div>
24 ) 14 )
25} \ No newline at end of file 15} \ No newline at end of file