diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index a1b32a6..3282372 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { ThemeProvider, createTheme } from '@mui/material/styles'; import CssBaseline from '@mui/material/CssBaseline'; import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; -import { Container } from '@mui/material'; +import { Container, Box } from '@mui/material'; import EventList from './components/EventList'; import EventForm from './components/EventForm'; import RSVPForm from './components/RSVPForm'; @@ -20,7 +20,17 @@ const darkTheme = createTheme({ }, background: { default: '#121212', - paper: '#1e1e1e', + paper: 'rgba(30, 30, 30, 0.9)', + }, + }, + components: { + MuiPaper: { + styleOverrides: { + root: { + backdropFilter: 'blur(10px)', + backgroundColor: 'rgba(30, 30, 30, 0.9)', + }, + }, }, }, }); @@ -30,23 +40,24 @@ const App: React.FC = () => { -
-
-
-

RSVP Manager

-
-
-
-
- - } /> - } /> - } /> - } /> - -
-
-
+ + + + } /> + } /> + } /> + } /> + + +
);