(chore) init commit and add tasks

This commit is contained in:
Story Crater Bot
2026-08-18 18:33:49 -07:00
commit 6c6218ef36
61 changed files with 9851 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
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>
);
}