Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add announcements to planner's homepage #242

Merged
merged 1 commit into from
Oct 15, 2024
Merged
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
12 changes: 12 additions & 0 deletions src/features/misc/home/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,21 @@ export const Home = () => {
const timeToEnd = timeLeftToFutureDate(nextLeDateEnd);
const isEventStarted = timeToStart === 'Finished';

const announcments = () => {
return (
<h2 style={{ textAlign: 'center' }}>
<a href="https://forms.gle/AhiqYtSAgQBmY9VW8" target="_blank" rel="noreferrer">
Beginners Guide Contest (Until October 31st)
</a>
</h2>
);
};

return (
<div>
{announcments()}
<Thanks sliderMode={true} />
{announcments()}
<div
style={{
display: 'flex',
Expand Down
Loading