Port BR-95 desktop to Next.js components

This commit is contained in:
Alexa Amundson
2025-11-20 19:11:04 -06:00
parent c96df78772
commit 160a4954ec
25 changed files with 2131 additions and 0 deletions

7
br95/app/page.tsx Normal file
View File

@@ -0,0 +1,7 @@
'use client';
import DesktopLayout from '../components/DesktopLayout';
export default function HomePage() {
return <DesktopLayout />;
}