summaryrefslogtreecommitdiff
path: root/frontend/components/drive/DriveHeader.tsx
blob: ddea9276ce012c8e80d4927e5dc2d903d24215d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { HardDrive } from "lucide-react"
import { AuthButtons } from "@/components/auth/AuthButtons"
import Link from "next/link"

export async function DriveHeader() {
  return (
    <div className="flex flex-col gap-4 sm:flex-row sm:items-center sm:justify-between">
      <Link href="/drive" className="flex items-center gap-2 hover:opacity-80 transition-opacity">
        <HardDrive className="h-6 w-6" />
        <h1 className="text-2xl font-bold">FCT Drive</h1>
      </Link>
      
      <AuthButtons />
    </div>
  )
}