import React from 'react'; import { Book, Search, Home, Library as LibraryIcon, FolderOpen, Languages } from 'lucide-react'; export const Layout = ({ children, currentView, setView, activeProject, lang, onLangChange, t }) => { return (
{/* Header */}
setView('home')}>

{t.title}

{/* Main Content */}
{children}
{/* Footer */}
); };