import "./globals.css";

export const metadata = {
  title: "Jasen Spirek | Execution Over Perfection",
  description: "CAD & I.T. Manager focused on Systems, Execution, and Automation.",
};

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