Skip to content

Commit 905896f

Browse files
committed
Update quick start card component and content metadata
1 parent 8762f18 commit 905896f

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

components/quick-start-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const QuickStartCard: FC<IQuickStartCard> = ({ path, emoji, title, body, style }
1414
return (
1515
<Link href={`${path}`} className={`${styles.card} no-underline ${style}`}>
1616
<div>
17-
<h3 className={`${styles.heading} flex items-center text-white`}>
17+
<h3 className={`${styles.heading} flex items-center`}>
1818
<span className={styles.emoji}>{emoji}</span>
1919
{title}
2020
</h3>

content/_meta.tsx

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import { HomeIcon, BookOpenIcon, PackageIcon, LaptopIcon, ServerIcon, BookIcon,
55
const META: MetaRecord = {
66
index: (
77
<span className="flex items-center gap-2">
8-
<HomeIcon strokeWidth={1.5} height="20" className="text-white flex items-center" />
8+
<HomeIcon strokeWidth={1.5} height="20" className="flex items-center" />
99
Getting Started
1010
</span>
1111
),
1212
"core-concepts": (
1313
<span className="flex items-center gap-2">
14-
<BookOpenIcon strokeWidth={1.5} height="20" className="text-white flex items-center" />
14+
<BookOpenIcon strokeWidth={1.5} height="20" className="flex items-center" />
1515
Core Concepts
1616
</span>
1717
),
@@ -21,19 +21,19 @@ const META: MetaRecord = {
2121
},
2222
"rent-gpu": (
2323
<span className="flex items-center gap-2">
24-
<PackageIcon strokeWidth={1.5} height="20" className="text-white flex items-center" />
24+
<PackageIcon strokeWidth={1.5} height="20" className="flex items-center" />
2525
Rent a GPU
2626
</span>
2727
),
2828
guides: (
2929
<span className="flex items-center gap-2">
30-
<AppWindowMacIcon strokeWidth={1.5} height="20" className="text-white flex items-center" />
30+
<AppWindowMacIcon strokeWidth={1.5} height="20" className="flex items-center" />
3131
Guides
3232
</span>
3333
),
3434
"protocol-sdk": (
3535
<span className="flex items-center gap-2">
36-
<JavaScriptIcon height="20" className="text-white flex items-center" />
36+
<JavaScriptIcon height="20" className="flex items-center" />
3737
Protocol SDK
3838
</span>
3939
),
@@ -51,19 +51,19 @@ const META: MetaRecord = {
5151
},
5252
providers: (
5353
<span className="flex items-center gap-2">
54-
<ServerIcon strokeWidth={1.5} height="20" className="text-white flex items-center" />
54+
<ServerIcon strokeWidth={1.5} height="20" className="flex items-center" />
5555
Provider Onboarding
5656
</span>
5757
),
5858
fizz: (
5959
<span className="flex items-center gap-2">
60-
<LaptopIcon strokeWidth={1.5} height="20" className="text-white flex items-center" />
60+
<LaptopIcon strokeWidth={1.5} height="20" className="flex items-center" />
6161
Fizz Node
6262
</span>
6363
),
6464
"chain-details": (
6565
<span className="flex items-center gap-2">
66-
<BookIcon strokeWidth={1.5} height="20" className="text-white flex items-center" />
66+
<BookIcon strokeWidth={1.5} height="20" className="flex items-center" />
6767
Chain Details
6868
</span>
6969
),
@@ -79,6 +79,11 @@ const META: MetaRecord = {
7979
href: "https://spheron.network/changelog",
8080
type: "page",
8181
},
82+
foundation: {
83+
title: "Foundation",
84+
href: "https://foundation.spheron.network/",
85+
type: "page",
86+
},
8287
signup: {
8388
title: "Sign Up",
8489
type: "page",

0 commit comments

Comments
 (0)