Skip to content

Commit

Permalink
Add Telegram link
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoBrigitte committed Nov 26, 2024
1 parent fdb3d26 commit 1dcc16f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion front/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ import ServersTable from './components/server';
import useWebSocket from 'react-use-websocket';
import { Server } from './components/types';

import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faTelegram } from '@fortawesome/free-brands-svg-icons';

type ErrorNull = Error | null;

type StatusProps = {
Expand Down Expand Up @@ -97,7 +100,13 @@ export default function Home() {
<div className="flex flex-row justify-center">
<div className="pt-10 pb-20 px-10">
<div className="flex flex-row min-w-fit justify-center flex-nowrap text-nowrap">
<div className="basis-1/4 flex-none"></div>
<div className="basis-1/4 flex flex-col justify-center items-center">
<div>Receive notifications on Telegram</div>
<a className="flex text-blue-400 space-x-1" href="https://t.me/KimsufiNotifierBot">
<div><FontAwesomeIcon icon={faTelegram} /></div>
<div>t.me/KimsufiNotifierBot</div>
</a>
</div>
<div className="basis-2/4 px-40 py-5 flex-none text-center text-xl font-bold">OVH Eco server availability</div>
<Status
error={error}
Expand Down

0 comments on commit 1dcc16f

Please sign in to comment.