Skip to content

Commit

Permalink
Add cursor pointer on Active Projects Button AOSSIE-Org#219
Browse files Browse the repository at this point in the history
  • Loading branch information
anshi089 committed Jan 27, 2025
1 parent c4829f1 commit 5995a53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/pages/ideas/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ function Article({ article }) {
{article.title}
</Card.Title>
<Card.Description>{article.description}</Card.Description>
<Card.Cta>Know More</Card.Cta>
<Card.Cta >Know More</Card.Cta>

</Card>
</article>
)
Expand Down
2 changes: 1 addition & 1 deletion src/pages/projects.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function Projects() {
{/* <h1 className="text-4xl font-mono font-extrabold tracking-tighter text-zinc-800 dark:text-zinc-100">
Active Projects
</h1> */}
<SectionHeading className="dark:hover:bg-yellow-500 dark:hover:text-white hover:bg-green-700 hover:text-white">Active Projects</SectionHeading>
<SectionHeading className="cursor-pointer dark:hover:bg-yellow-500 dark:hover:text-white hover:bg-green-700 hover:text-white">Active Projects</SectionHeading>
<p className='text-zinc-600 dark:text-zinc-400 text-lg font-mono leading-7 mt-3'>The following projects are currently actively maintained and mentors are available!</p>
<ul role="list" className="grid grid-cols-1 gap-x-12 gap-y-16 sm:grid-cols-2 lg:grid-cols-3 mt-12 mb-16">
{projects.map((project) => (
Expand Down

0 comments on commit 5995a53

Please sign in to comment.