Add search and RAG workspace flows

This commit is contained in:
2026-03-07 20:34:00 -05:00
parent db01f207a5
commit e20aba998b
35 changed files with 3417 additions and 372 deletions

View File

@@ -1,5 +1,5 @@
import './globals.css';
import type { Metadata } from 'next';
import type { Metadata, Viewport } from 'next';
import { QueryProvider } from '@/components/providers/query-provider';
export const metadata: Metadata = {
@@ -7,6 +7,13 @@ export const metadata: Metadata = {
description: 'Futuristic fiscal intelligence terminal with durable tasks and AI SDK integration.'
};
export const viewport: Viewport = {
width: 'device-width',
initialScale: 1,
viewportFit: 'cover',
themeColor: '#05080d'
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">