feat: static page
* feat: static site
* feat: mui support & basic theming
* feat: entgamers favicon
* feat: public images until dynamic content can be used
* feat: entgamers & gaming assets
* feat: eslint extra rules
* feat: mui theme modifications
* feat: fontawesome, gsap, bundle analyzer
* feat: common interfaces
* feat: basic layout
* chore: upadted dependencies
* chore: updated dependencies
* feat: updated link styles
* feat: layout now have better interfaces
* feat: basic seo component
* feat: static website
* feat: env variable rules in .gitignore
* feat: added lint to pre-commit
* docs: initial documentation
* ci: deploy using pm2
* ci: pm2 configuration file
* ci: github action deploy preview
* ci: github action deploy production
* ci: env variables now pass to pm2
* fix: pass environment to actions
* feat: post deploy as sudo
* fix: pass only required env to deploy
* revert: deploy as sudo
Refs: 624b225
* fix: server use isomorphic-fetch
* ci: use yarn instead npm
* fix: glass text contrast
* fix: production git ref
* docs: deploy env vars
This commit is contained in:
Vendored
+37
@@ -0,0 +1,37 @@
|
||||
import { CSSProperties } from 'react'
|
||||
|
||||
declare module '@mui/material/styles' {
|
||||
interface PaperVariants {
|
||||
glass: CSSProperties
|
||||
gbaDialog: CSSProperties
|
||||
}
|
||||
|
||||
interface PaperVariantsOptions {
|
||||
glass?: CSSProperties
|
||||
gbaDialog?: CSSProperties
|
||||
}
|
||||
|
||||
interface CardVariants {
|
||||
glass: CSSProperties
|
||||
gbaDialog: CSSProperties
|
||||
}
|
||||
|
||||
interface CardVariantsOptions {
|
||||
glass?: CSSProperties
|
||||
gbaDialog?: CSSProperties
|
||||
}
|
||||
}
|
||||
|
||||
declare module '@mui/material/Card' {
|
||||
interface CardPropsVariantOverrides {
|
||||
glass: true
|
||||
gbaDialog: true
|
||||
}
|
||||
}
|
||||
|
||||
declare module '@mui/material/Paper' {
|
||||
interface PaperPropsVariantOverrides {
|
||||
glass: true
|
||||
gbaDialog: true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user