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

[feat]: Add OpenStatus link for Monitoring πŸ“Š #104

Merged
merged 2 commits into from
Mar 20, 2024
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
14 changes: 14 additions & 0 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import Link from 'next/link';

import { SocialLink } from './SocialLink';
import GalsenDevLogo from './svg/GalsenDevLogo';

Expand All @@ -10,6 +12,18 @@ const Footer = () => (
<div className="mb-8 inline-flex items-center gap-4 sm:mb-0">
<GalsenDevLogo />
<h2 className="text-gray-900 text-3xl">Galsen DEV</h2>
<Link
className="inline-flex max-w-fit items-center gap-2 text-md hover:text-gray-600/75 text-gray-900"
href="https://status.openstatus.dev"
target="_blank"
rel="noreferrer"
>
β†— Status
<span className="relative flex h-2 w-2">
<span className="absolute inline-flex h-full w-full animate-ping rounded-full bg-green-500 opacity-75 duration-1000" />
<span className="relative inline-flex h-2 w-2 rounded-full bg-green-600" />
</span>
</Link>
</div>

<div className="sm:mt-8 sm:flex sm:justify-between sm:items-center">
Expand Down
4 changes: 2 additions & 2 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ const Navbar = () => {
{ name: t('navbar.events'), path: '/events' },
{ name: t('navbar.gallery'), path: '/gallery' },
{
name: 'Blog β†’',
name: 'Blog β†—',
path: 'https://medium.com/@galsendev221',
target: '_blank',
},
{ name: t('navbar.about'), path: '/about' },
{
name: 'Call for Speakers 2024 β†’',
name: 'Call for Speakers 2024 β†—',
path: 'https://tally.so/r/w2P8eM',
target: '_blank',
},
Expand Down
Loading