chore: initialize beadboard baseline

This commit is contained in:
zenchantlive 2026-02-11 17:42:51 -08:00
commit 292a72f861
30 changed files with 2983 additions and 0 deletions

15
src/app/layout.tsx Normal file
View file

@ -0,0 +1,15 @@
import type { Metadata } from 'next';
import type { ReactNode } from 'react';
export const metadata: Metadata = {
title: 'BeadBoard',
description: 'Windows-native Beads dashboard',
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}

7
src/app/page.tsx Normal file
View file

@ -0,0 +1,7 @@
export default function Page() {
return (
<main>
<h1>BeadBoard</h1>
</main>
);
}