import type { Metadata } from "next";
import "./globals.css";
import SiteHeader from "../components/SiteHeader";

export const metadata: Metadata = {
  title: "PROS·ON | 환자 맞춤형 의지 솔루션",
  description: "정밀한 분석과 제작으로 더 나은 움직임을 설계하는 PROS·ON입니다.",
};

export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
  return (
    <html lang="ko">
      <body><SiteHeader />{children}</body>
    </html>
  );
}
