Skip to content
This repository was archived by the owner on Oct 5, 2025. It is now read-only.
Open
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
47 changes: 23 additions & 24 deletions components/Announce.tsx
Original file line number Diff line number Diff line change
@@ -1,34 +1,33 @@
import Link from 'next/link';
import React from 'react';
import { Body } from '../styles/typography';
import Link from "next/link";
import React from "react";
import { Body } from "../styles/typography";
import AnnouncementBar from "./elements/AnnouncementBar.elements";
import {colors} from "../styles/colors";
import { colors } from "../styles/colors";

const RegistrationOpen = () => {
return (
<AnnouncementBar>
<Body
color={colors.ltGray}
weight={600}
align="center"
margins="0.5rem"
>
Want to bring your school to CIMUN XVIII? You're in luck!
{" - "}
<Link href="/school-registration">
<a><u>Register Now</u></a>
</Link>
{" - "}
<Link href="/registration-information.pdf">
<a><u>More Information</u></a>
</Link>
</Body>
</AnnouncementBar>
)
<AnnouncementBar>
<Body color={colors.ltGray} weight={600} align="center" margins="0.5rem">
Want to bring your school to CIMUN XVIII? You're in luck!
{" - "}
<Link href="/school-registration">
<a>
<u>Register Now</u>
</a>
</Link>
{" - "}
<Link href="/conference">
<a>
<u>More Information</u>
</a>
</Link>
</Body>
</AnnouncementBar>
);
};

const Announce = {
RegistrationOpen
RegistrationOpen,
};

export default Announce;
Loading