import * as React from "react" import { SidebarProvider, Sidebar, SidebarContent, SidebarHeader, SidebarFooter, SidebarInset, SidebarTrigger } from "@/components/ui/sidebar" interface MainLayoutProps { children: React.ReactNode } export function MainLayout({ children }: MainLayoutProps) { return (
EA Chatbot
{/* Navigation links or conversation history will go here */}
© 2026 Election Analytics
Chat
{children}
) }