- Add DimensionIconsContext for app-wide dimension icon sharing - Enhanced getNodeIcon() with favicon/YouTube/PDF detection + dimension icons - Propagate dynamic icons to GridView, ListView, SearchModal, FocusPanel, ViewsOverlay, FolderViewOverlay - Add RahEdge component with hover labels for map edges - Update RahNode with dimension-colored borders and icon support - Add MiniMap with dimension color coding to MapPane - MCP server: add description field to rah_update_node, bump standalone to v1.4.2 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
492 B
TypeScript
24 lines
492 B
TypeScript
import './globals.css';
|
|
import { DimensionIconsProvider } from '@/context/DimensionIconsContext';
|
|
|
|
export const metadata = {
|
|
title: 'RA-H Open Source',
|
|
description: 'Local-first research workspace with a BYO-key AI orchestrator',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
<DimensionIconsProvider>
|
|
{children}
|
|
</DimensionIconsProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|