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

update openchat redirect link (issue 324) #375

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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
4 changes: 3 additions & 1 deletion src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ function NavLink({ href, children }) {
}

export function Footer() {
let date = new Date();
let year = date.getFullYear();
return (
<footer className="mt-16">
<Container.Outer>
Expand All @@ -30,7 +32,7 @@ export function Footer() {
<NavLink href="/apply">Apply</NavLink>
</div>
<p className="text-sm text-zinc-400 dark:text-zinc-500 font-mono">
&copy; 2016-2023 AOSSIE. All rights reserved.
&copy; 2016-{year} AOSSIE. All rights reserved.
</p>
<div className="flex gap-6">
<Link aria-label="Contact by Mail" className=' text-zinc-400 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition' href='mailto:[email protected]'>
Expand Down
2 changes: 1 addition & 1 deletion src/helper/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const projects = [
name: 'OpenChat',
description:
'a decentralised platform for secure and private messaging and file sharing built on top of blockchain',
link: { href: '#', label: 'OpenChat' },
link: { href: 'https://github.com/AOSSIE-Org/OpenPeerChat-flutter', label: 'OpenChat' },
logo: DefaultLogo,
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ideas/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default function Ideas({ articles }) {
</div>
<div className="mt-16 text-center">
<Link
className="group order-2 mx-auto items-center overflow-hidden rounded-lg bg-zinc-800 px-8 py-3 text-white focus:outline-none dark:bg-white dark:text-black"
className="group order-2 mx-auto items-center overflow-hidden rounded-lg bg-zinc-800 px-8 py-3 text-white focus:outline-none dark:bg-white dark:text-black hover:bg-[#00843D] hover:dark:bg-yellow-400"
href="/ideas/2023"
>
<span className="text-center font-mono font-semibold">
Expand Down