Skip to content

Commit

Permalink
🍱 Update academy highlights (#495)
Browse files Browse the repository at this point in the history
Co-authored-by: 0xlny <[email protected]>
  • Loading branch information
JejomStark and 0xlny authored Dec 15, 2023
1 parent a6bd902 commit a8334ed
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
11 changes: 10 additions & 1 deletion data/academy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const highlightedLearning: Resource[] = [
"The Cairo Book is a introductory book about Cairo Programming Language.",
tags: ["starknet", "cairo", "learn"],
network: {
website: "https://cairo-book.github.io/",
website: "https://book.cairo-lang.org/",
},
},
{
Expand All @@ -52,6 +52,15 @@ export const highlightedLearning: Resource[] = [
github: "https://github.com/shramee/starklings-cairo1",
},
},
{
name: "Node Guardians",
shortName: "NG",
description: "Uncover the secrets of Cairo through epic fantasy quests.",
tags: ["learn", "tutorial"],
network: {
github: "https://nodeguardians.io/",
},
},
];
// ======================================================================
// Learning links
Expand Down
4 changes: 2 additions & 2 deletions src/components/academy/LearnContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ function LearnContent({
<VStack w="full" align="flex-start">
{highlightedResources && (
<SimpleGrid
columns={{ sm: 1, lg: 2, xl: 3 }}
columns={{ sm: 1, lg: 2, "2xl": 4 }}
spacing={4}
w="full"
mb={8}
>
{highlightedResources.slice(0, 3).map((highlightedResource) => {
{highlightedResources.slice(0, 4).map((highlightedResource) => {
const { name, description, link, network } = highlightedResource;
const { github, twitter, website } = network;
return (
Expand Down
1 change: 0 additions & 1 deletion src/components/card/CardHighlight.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ function CardHighlight({
position="relative"
direction="column"
p={4}
minW="250px"
transition=".4s ease all"
cursor="pointer"
onClick={() => console.log("coucou")}
Expand Down

1 comment on commit a8334ed

@vercel
Copy link

@vercel vercel bot commented on a8334ed Dec 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.