c3dae929c6
* 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
18 lines
733 B
TypeScript
18 lines
733 B
TypeScript
import { Typography } from '@mui/material'
|
|
|
|
import Contained from '@components/layouts/Contained'
|
|
|
|
const About = () => {
|
|
return (
|
|
<Contained>
|
|
<Typography variant='h1' align="center" gutterBottom>Sobre EntGamers</Typography>
|
|
<Typography variant='h2' gutterBottom>¿Qué es EntGamers?</Typography>
|
|
<Typography variant='body1'>
|
|
EntGamers es una comunidad de jugadores y para jugadores, surge del deseo de tener un espacio seguro, físico o virtual, para encontrar y conocer gente con los mismos gustos. Desde la idea inicial ha ido evolucionando con el paso del tiempo y el paso por otras comunidades hasta convertirse en lo que es ahora.
|
|
</Typography>
|
|
</Contained>
|
|
)
|
|
}
|
|
|
|
export default About
|