- Add TopNav component with AI Chat, Study Guides, Progress tabs - Refactor sidebar to include brand, new chat, subjects, chat history, settings - Add message action buttons (Helpful, Note, Deeper) on assistant responses - Enhance ChatInput with photo, mic attachment icons and AI disclaimer - Improve welcome state with 2x2 suggested prompt grid - Update global layout for proper sidebar offset (fix nav overlap) - Remove obsolete Header component - All styles: strict BEM naming, zero inline CSS, Paper Look theme
15 lines
370 B
React
15 lines
370 B
React
/* ========================================
|
|
Main Entry Point — padhLe
|
|
======================================== */
|
|
|
|
import React from "react";
|
|
import ReactDOM from "react-dom/client";
|
|
import App from "./App.jsx";
|
|
import "./styles/global.css";
|
|
|
|
ReactDOM.createRoot(document.getElementById("root")).render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>
|
|
);
|