"use client" import * as React from "react" import { useRouter } from "next/navigation" import { Button } from "@/components/ui/button" import { Badge } from "@/components/ui/badge" import { ArrowLeft, Eye, Download, Settings } from "lucide-react" import { InformationButton } from "@/components/information/information-button" interface GtcClausesPageHeaderProps { document: any // GtcDocumentWithRelations 타입 } export function GtcClausesPageHeader({ document }: GtcClausesPageHeaderProps) { const router = useRouter() const handleBack = () => { router.push('/evcp/gtc') } return (