Skip to content

Commit

Permalink
landing: Add google and ios badges to the landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedBassem committed May 6, 2024
1 parent 7f3e482 commit edf5fdb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions apps/landing/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import Link from "next/link";
import HoarderLogo from "@/components/HoarderLogo";
import { buttonVariants } from "@/components/ui/button";
import { cn } from "@/lib/utils";
import appStoreBadge from "@/public/app-store-badge.png";
import playStoreBadge from "@/public/google-play-badge.png";
import screenshot from "@/public/screenshot.png";
import { ExternalLink, Github } from "lucide-react";

Expand Down Expand Up @@ -76,6 +78,21 @@ function Hero() {
<Github /> Github
</Link>
</div>

<div className="flex items-center gap-4">
<Link
href="https://play.google.com/store/apps/details?id=app.hoarder.hoardermobile&pcampaignid=web_share"
target="_blank"
>
<Image className="w-48" alt="play store badge" src={playStoreBadge} />
</Link>
<Link
href="https://apps.apple.com/us/app/hoarder-app/id6479258022"
target="_blank"
>
<Image className="w-40" alt="app store badge" src={appStoreBadge} />
</Link>
</div>
</div>
);
}
Expand Down
Binary file added apps/landing/public/google-play-badge.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 edf5fdb

Please sign in to comment.