import type React from "react" import type { Metadata } from "next" import { Inter } from "next/font/google" import "./globals.css" import { Navigation } from "@/components/navigation" const inter = Inter({ subsets: ["latin"] }) export const metadata: Metadata = { title: "高階主管績效管理系統", description: "策略導向 + 數據驅動 + 周期回顧的績效管理平台", generator: 'v0.dev' } export default function RootLayout({ children, }: { children: React.ReactNode }) { return (