- Add i18n support (EN/ZH) with language toggle - Redesign header with education dropdown, contact copy buttons - Add RBC project showcase with bullet points, skills highlighting - Create terraform-drift placeholder page - Add ProjectShowcase component with media toggle (image/video) - Update experience timeline with action-driven descriptions - Add Docker + Forgejo CI workflow for image builds - Update K8s manifests for riotpiao.com ingress - Add DESIGN.md documenting design system patterns
29 lines
784 B
TypeScript
29 lines
784 B
TypeScript
import './globals.css'
|
|
import Header from '@/components/Header'
|
|
import { TerminalProvider } from '@/lib/TerminalContext'
|
|
import { LanguageProvider } from '@/lib/LanguageContext'
|
|
|
|
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">
|
|
<LanguageProvider>
|
|
<TerminalProvider>
|
|
<Header />
|
|
{children}
|
|
</TerminalProvider>
|
|
</LanguageProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|