23 lines
548 B
TypeScript
23 lines
548 B
TypeScript
import './globals.css'
|
|
import Header from '@/components/Header'
|
|
|
|
export const metadata = {
|
|
title: 'Rock Liang — Portfolio & Live Infrastructure',
|
|
description: 'Personal portfolio showcasing Kubernetes, Terraform, and cloud-native systems.',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<body className="bg-white dark:bg-gray-950 text-gray-900 dark:text-white">
|
|
<Header />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|