From 0849692a37870f03ef875044763c9018129e14d3 Mon Sep 17 00:00:00 2001 From: Ananth Venkatesh <46249765+quantum9Innovation@users.noreply.github.com> Date: Wed, 14 Feb 2024 22:22:49 +0000 Subject: [PATCH] Clean up module pages --- src/app/about/page.tsx | 2 +- src/app/contact/page.tsx | 1 + src/app/help/accessibility/accessibility.module.css | 0 src/app/help/accessibility/page.tsx | 5 ++++- src/app/help/page.tsx | 1 + src/app/legal/copyright/copyright.module.css | 0 src/app/legal/copyright/page.tsx | 1 + src/app/legal/privacy/page.tsx | 1 + src/app/legal/privacy/privacy.module.css | 0 src/app/status/notifications/page.tsx | 5 ++++- src/app/status/page.tsx | 7 ++++++- src/app/status/status.module.css | 5 ----- src/app/subscribe/page.tsx | 1 + src/app/subscribe/subscribe.module.css | 0 14 files changed, 20 insertions(+), 9 deletions(-) delete mode 100644 src/app/help/accessibility/accessibility.module.css delete mode 100644 src/app/legal/copyright/copyright.module.css delete mode 100644 src/app/legal/privacy/privacy.module.css delete mode 100644 src/app/status/status.module.css delete mode 100644 src/app/subscribe/subscribe.module.css diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 0b89482..f2890c8 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,7 +3,7 @@ import Link from 'next/link' export default function Page() { return (
-

About Us

+

About Us

eeXiv{' '} {`is a project hosted by Team 1280 EECS ("Electrical Engineering and diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index a6ae8fd..96ebe65 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,6 +1,7 @@ export default function Page() { return (

+

Contact

You can contact a team representative directly at{' '} diff --git a/src/app/help/accessibility/accessibility.module.css b/src/app/help/accessibility/accessibility.module.css deleted file mode 100644 index e69de29..0000000 diff --git a/src/app/help/accessibility/page.tsx b/src/app/help/accessibility/page.tsx index fd72b36..ab26783 100644 --- a/src/app/help/accessibility/page.tsx +++ b/src/app/help/accessibility/page.tsx @@ -1,6 +1,7 @@ export default function Page() { return (

+

Accessibility

If you encounter any accessibility-related issues related to your use of our site, it is likely because of our jank code architecture. @@ -11,7 +12,9 @@ export default function Page() { pull request{' '} on GitHub.

-
+

+ Supported Hardware +

It has also come to our attention that we may not be able to support low-spec devices such as old phones, computers, or other devices with diff --git a/src/app/help/page.tsx b/src/app/help/page.tsx index a57cfcb..d573656 100644 --- a/src/app/help/page.tsx +++ b/src/app/help/page.tsx @@ -1,6 +1,7 @@ export default function Page() { return (

+

Help

We are always looking for contributors to help us improve eeXiv. If you are interested in helping, whether as a peer reviewer, external diff --git a/src/app/legal/copyright/copyright.module.css b/src/app/legal/copyright/copyright.module.css deleted file mode 100644 index e69de29..0000000 diff --git a/src/app/legal/copyright/page.tsx b/src/app/legal/copyright/page.tsx index 5cb0508..8c75ebd 100644 --- a/src/app/legal/copyright/page.tsx +++ b/src/app/legal/copyright/page.tsx @@ -2,6 +2,7 @@ import Link from 'next/link' export default function Page() { return (

+

Copyright

All content on this site is licensed under the{' '} diff --git a/src/app/legal/privacy/page.tsx b/src/app/legal/privacy/page.tsx index 06febb9..2aa189f 100644 --- a/src/app/legal/privacy/page.tsx +++ b/src/app/legal/privacy/page.tsx @@ -1,6 +1,7 @@ export default function Page() { return (

+

Privacy Policy

{`User privacy is important to us. Just kidding. We don't collect any personal information. We only use it to help us improve eeXiv. Your diff --git a/src/app/legal/privacy/privacy.module.css b/src/app/legal/privacy/privacy.module.css deleted file mode 100644 index e69de29..0000000 diff --git a/src/app/status/notifications/page.tsx b/src/app/status/notifications/page.tsx index 59bf9ee..537d862 100644 --- a/src/app/status/notifications/page.tsx +++ b/src/app/status/notifications/page.tsx @@ -1,9 +1,12 @@ +import Link from 'next/link' + export default function Page() { return (

+

Get status notifications

We currently do not have the technical support to implement mailing - lists in eeXiv. Check status frequently for updates. + lists in eeXiv. Check status frequently for updates. The best way to stay connected with the status of the eeXiv project is to watch it on GitHub.

diff --git a/src/app/status/page.tsx b/src/app/status/page.tsx index 26d3dc3..b0b96df 100644 --- a/src/app/status/page.tsx +++ b/src/app/status/page.tsx @@ -1,7 +1,12 @@ +import { Zilla_Slab } from 'next/font/google' + +const zillaSlab = Zilla_Slab({ subsets: ['latin'], weight: ['500', '700'] }) + export default function Page() { return (
-

+

Status

+

eeXiv is online. All systems{' '} operational.

diff --git a/src/app/status/status.module.css b/src/app/status/status.module.css deleted file mode 100644 index 17ccfdf..0000000 --- a/src/app/status/status.module.css +++ /dev/null @@ -1,5 +0,0 @@ -.content { - margin-top: 40px; - padding: 35px; - border-radius: 15px; -} diff --git a/src/app/subscribe/page.tsx b/src/app/subscribe/page.tsx index 0fe8341..c8d62d1 100644 --- a/src/app/subscribe/page.tsx +++ b/src/app/subscribe/page.tsx @@ -1,6 +1,7 @@ export default function Page() { return (
+

Subscribe

We currently do not have the technical support to implement mailing lists in eeXiv. Check back later for updates. The best way to stay diff --git a/src/app/subscribe/subscribe.module.css b/src/app/subscribe/subscribe.module.css deleted file mode 100644 index e69de29..0000000