header and footer

This commit is contained in:
2026-04-04 13:34:48 +05:30
parent 177cc976b4
commit c3d233c41a
5 changed files with 162 additions and 34 deletions

13
src/AppTheme.tsx Normal file
View File

@@ -0,0 +1,13 @@
import * as React from "react";
import { ThemeProvider, createTheme } from "@mui/material/styles";
const theme = createTheme({
palette: {
// mode: "light", // or "dark"
mode: "dark", // or "dark"
},
});
export default function AppTheme({ children }: { children: React.ReactNode }) {
return <ThemeProvider theme={theme}>{children}</ThemeProvider>;
}