Skip to content

Commit

Permalink
feat: add phaver and kaira to recommended apps
Browse files Browse the repository at this point in the history
  • Loading branch information
daoleno committed Jan 7, 2024
1 parent 47b3944 commit 9c9bd4f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
data
6 changes: 4 additions & 2 deletions dashboard/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ export default async function Home() {
return (
<div className="mt-6 space-y-6">
<StatCards />
<div className="grid grid-cols-2 items-stretch gap-4">
<DailyApps />
<div className="grid grid-cols-1 items-stretch gap-4 sm:grid-cols-3">
<div className="sm:col-span-2">
<DailyApps />
</div>
<div className="grid gap-3">
<DailyPublicationStats />
<DailyProfileStats />
Expand Down
2 changes: 1 addition & 1 deletion dashboard/components/dailyapps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default async function DailyApps() {
</CardTitle>
</CardHeader>
<div className="w-full whitespace-nowrap">
<CardContent className="grid grid-cols-2 gap-7">
<CardContent className="grid grid-cols-1 gap-3 sm:grid-cols-2 sm:gap-7">
{dailyApps.map((app) => (
<Card key={app.name}>
<CardContent className="flex items-center p-4 sm:flex-row">
Expand Down
13 changes: 9 additions & 4 deletions dashboard/config/apps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,19 @@ export const recommendApps = [
icon: "/apps/dumpling.png",
url: "https://www.dumpling.lol/",
},
]

export const apps = [
...recommendApps,
{
name: "Phaver",
description: "Social Without Silos",
icon: "/apps/phaver.svg",
url: "https://phaver.com/",
},
{
name: "Kaira",
description:
"Kaira is a Web3 social media app offering creators and consumers can earn rewards based on a complementary economy model",
icon: "/apps/kaira.png",
url: "https://kaira.network/",
},
]

export const apps = [...recommendApps]
Binary file added dashboard/public/apps/kaira.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9c9bd4f

Please sign in to comment.