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

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>
      
      <AuthButtons />
    </div>
  )
}