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

Updated the Copyright issue form 2023 to 2025 #359

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
2 changes: 1 addition & 1 deletion src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,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-2025 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
8 changes: 4 additions & 4 deletions src/pages/ideas/2023/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function Article({ article }) {
return (
<article className="md:grid md:grid-cols-4 md:grid-flow-col md:items-baseline sm:mt-0 mt-5">
<Card className="md:col-span-3">
<Card.Title href={`/ideas/2023/${article.slug}`}>
<Card.Title href={`/ideas/2023/${article.slug}`}>
{article.title}
</Card.Title>
<Card.Description>{article.description}</Card.Description>
Expand Down Expand Up @@ -43,9 +43,9 @@ export default function Ideas({ articles }) {
))}
</div>
</div>
<div className='text-center mt-16'>
<Link className="mx-auto order-2 group rounded-lg items-center overflow-hidden bg-zinc-800 dark:bg-white px-8 py-3 dark:text-black text-white focus:outline-none" href="/ideas">
<span className="font-mono font-semibold text-center">
<div className='text-center mt-16 '>
<Link className="inline-block order-2 mx-auto items-center overflow-hidden bg-zinc-800 hover:bg-yellow-400 hover:scale-110 transition-all duration-300 ease-in-out rounded-lg px-8 py-3 text-white hover:text-black focus:outline-none dark:bg-white dark:text-black dark:hover:bg-yellow-400 dark:hover:text-black hover:border-b-4 hover:font-extrabolde" href="/ideas">
<span className="font-mono font-semibold text-center ">
Go Back
</span>
</Link>
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="inline-block order-2 mx-auto items-center overflow-hidden bg-zinc-800 hover:bg-yellow-400 hover:scale-110 transition-all duration-300 ease-in-out rounded-lg px-8 py-3 text-white hover:text-black focus:outline-none dark:bg-white dark:text-black dark:hover:bg-yellow-400 dark:hover:text-black hover:border-b-4 hover:font-extrabolde"
href="/ideas/2023"
>
<span className="text-center font-mono font-semibold">
Expand Down