- Replace Bauhaus aesthetic with Material Design 3-inspired layout - Add working grade/subject/chapter dropdown selectors with placeholder options - Fix ChatInput layout: remove position:absolute, use flex column flow - Update sidebar with Material Icons, upgrade card, and clean hover states - Add TopNav dropdowns with click-outside-to-close behavior - Modernize message bubbles, action buttons, and welcome state - Replace SVG icons with Material Symbols throughout - Apply consistent BEM naming, CSS custom properties, no inline styles
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>
|
|
);
|