Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/app/components/navigation/DowntimeWarningBanner.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from "react";
import { Alert, Button, Col, Container, Row } from "reactstrap";
import Cookies from "js-cookie";
import { SITE_SUBJECT_TITLE, SOCIAL_LINKS } from "../../services";
import { SITE_SUBJECT_TITLE } from "../../services";

const DOWNTIME_COOKIE = "downtimeBannerDismissed";

Expand Down Expand Up @@ -29,10 +29,6 @@ export const DowntimeWarningBanner = () => {
<sup>rd</sup> July for essential maintenance. You will need to log in again once the maintenance is
complete.
<br />
<a href={SOCIAL_LINKS.twitter.href} target="_blank" rel="noopener noreferrer">
Check our Twitter feed
</a>{" "}
for any updates on the day.
</span>
</Col>
<Col xs={12} md={3} className="text-center">
Expand Down
1 change: 0 additions & 1 deletion src/app/services/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export const SOCIAL_LINKS = {
youtube: { name: "YouTube", href: "https://www.youtube.com/@isaaccomputerscience" },
facebook: { name: "Facebook", href: "https://www.facebook.com/IsaacComputerScience" },
instagram: { name: "Instagram", href: "https://www.instagram.com/isaaccompsci" },
twitter: { name: "Twitter", href: "https://twitter.com/isaaccompsci" },
};

// Change to "http://localhost:3000" if you want to run a local version of the code editor
Expand Down
Loading