Files
recall/src/app/layout.tsx
T
darroyo cde0a143a5 feat: MVP-5 Sprint 2 - Command Palette and Global Shortcuts
- Add Command Palette (Ctrl+K / Cmd+K) with search and navigation
- Add global keyboard shortcuts: g h (dashboard), g n (notes), n (new note)
- Add keyboard shortcuts help dialog (?)
- Add shortcuts provider component
- Shortcuts ignore inputs/textareas for proper UX
2026-03-22 18:22:28 -03:00

29 lines
765 B
TypeScript

import type { Metadata } from 'next'
import './globals.css'
import { Toaster } from '@/components/ui/sonner'
import { Header } from '@/components/header'
import { CommandPalette } from '@/components/command-palette'
import { ShortcutsProvider } from '@/components/shortcuts-provider'
export const metadata: Metadata = {
title: 'Recall - Gestor de Conocimiento Personal',
description: 'Captura rápido, relaciona solo, encuentra cuando importa',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="es">
<body className="min-h-screen bg-white">
<Header />
{children}
<Toaster />
<CommandPalette />
<ShortcutsProvider />
</body>
</html>
)
}