"use client" import { LineChart, Line, CartesianGrid, XAxis, YAxis } from 'recharts'; import { AppBar, Grid, ThemeProvider, Toolbar } from '@mui/material'; import { useTheme } from '@emotion/react'; import styled from '@emotion/styled'; import theme from './theme'; import MainPage from './MainPage'; import PerksPage from './PerksPage'; import WheelSpinPage from './WheelSpinPage'; import CalendarPage from './CalendarPage'; import GraphPage from './GraphPage'; import BottomBar from './BottomBar'; import { LocalizationProvider } from '@mui/x-date-pickers/LocalizationProvider'; import { AdapterDayjs } from '@mui/x-date-pickers/AdapterDayjs'; // const Graph = () => { // const data = [{name: 'Page A', uv: 400, pv: 2400, amt: 2400}, {name: 'Page B', uv: 800, pv: 2400, amt: 2400}]; // return ( // // // // ) // } const StyledToolbar = styled(Toolbar)(({ theme }) => ({ backgroundColor: theme.palette.primary.dark, color: theme.palette.text.light })); const Home = () => { return (
Spokane Bitcoin Club
) } export default Home;