X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Fpages%2FAosFront.js;fp=resources%2Fjs%2Fcomponents%2Fpages%2FAosFront.js;h=0000000000000000000000000000000000000000;hb=f7ec7bd25d8ce700b18e0900ee01db1107f2ccfa;hp=9651110d3c80e134e88cb73e4de8472ea09c0019;hpb=9e08a6086d2c982ec9a2b9b79e3441ac8347f695;p=alttp.git diff --git a/resources/js/components/pages/AosFront.js b/resources/js/components/pages/AosFront.js deleted file mode 100644 index 9651110..0000000 --- a/resources/js/components/pages/AosFront.js +++ /dev/null @@ -1,87 +0,0 @@ -import React from 'react'; -import { Button, Col, Container, Row } from 'react-bootstrap'; -import { Helmet } from 'react-helmet'; -import { useTranslation } from 'react-i18next'; - -import Icon from '../common/Icon'; - -const authEndpoint = 'https://discord.com/oauth2/authorize'; -const clientId = '951113702839549982'; -const botUrl = `${authEndpoint}?client_id=${clientId}&scope=bot%20applications.commands`; -const commandUrl = `${authEndpoint}?client_id=${clientId}&scope=applications.commands`; - -const AosFront = () => { - const { t } = useTranslation(); - - return - - AoS - - -
-

Castlevania: Aria of Sorrow

-
- - - - - - - - - - - - - - - - - -
; -}; - -export default AosFront;