This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap'); | |
| $c-primary: '#246EB9'; | |
| $c-secondary: '#16ff4c'; | |
| $c-error: '#F06543'; | |
| $c-warning: '#F5EE9E'; | |
| $c-info: '#16c9ff'; | |
| $c-bg: '#FDFFFC'; | |
| $white: #fff; | |
| $black: #000000; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import { | |
| createTheme, | |
| responsiveFontSizes | |
| } from '@mui/material/styles'; | |
| const font = "'Rubik', sans-serif"; | |
| let theme = createTheme({ | |
| palette: { | |
| primary: { main: '#1d2031' }, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import * as React from 'react' | |
| import Document, { Html, Head, Main, NextScript } from 'next/document' | |
| import createEmotionServer from '@emotion/server/create-instance' | |
| import createCache from '@emotion/cache' | |
| import { CacheProvider } from '@emotion/react' | |
| function getCache() { | |
| const cache = createCache({ key: 'css', prepend: true }) | |
| cache.compat = true | |
| return cache | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import * as React from 'react' | |
| import type { AppProps } from 'next/app' | |
| import Head from 'next/head' | |
| import { useRouter } from 'next/router' | |
| import { ThemeProvider } from '@material-ui/core/styles' | |
| import { CacheProvider } from '@emotion/react' | |
| import CssBaseline from '@material-ui/core/CssBaseline' | |
| import createCache from '@emotion/cache' | |
| import theme from '@/lib/mui-theme/theme' | |
| import '@/styles/globals.scss' | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              Show hidden characters
| { | |
| "compilerOptions": { | |
| "baseUrl": ".", | |
| "paths": { | |
| "@/styles/*": ["./src/styles/*"], | |
| "@/lib/*": ["./src/lib/*"] | |
| }, | |
| "target": "esnext", | |
| "lib": [ | |
| "dom", | 
NewerOlder