-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import BBiBBiHead from "@/components/BBiBBiHead"; | ||
import './globals.css' | ||
import Image from "next/image"; | ||
import Link from "next/link"; | ||
|
||
export default function Download() { | ||
return <> | ||
<BBiBBiHead title={"삐삐 - 다운로드"} description={"삐삐를 다운로드해요"}/> | ||
<div className={"flex flex-col justify-center items-center h-screen w-screen gap-8"}> | ||
<div className="profile-image"> | ||
<Link href="/"> | ||
<img width={300} | ||
src="https://application-logos.s3.amazonaws.com/067ac952d6a15b3488f7cacefe9e193d.png" | ||
alt="image"/> | ||
</Link> | ||
</div> | ||
<div className="pt-3 flex flex-col justify-center items-center"> | ||
<h1 className="text-gray-300 text-2xl">삐삐 - 가족 일상 위젯</h1> | ||
<p className="text-gray-300 text-xl pt-3">하루에 한 번 가족에게 보내는 생존신고 서비스</p> | ||
<div className={"flex flex-row justify-center items-center pt-8 gap-3"}> | ||
<Link | ||
href="https://play.google.com/store/apps/details?id=com.no5ing.bbibbi&pli=1"> | ||
<Image height={320} width={160} src="/googleplay.png" alt={"playstore"}/> | ||
</Link> | ||
<Link href="https://apps.apple.com/kr/app/bibbi/id6475082088"> | ||
<Image height={320} width={160} src="/appstore.png" alt={"appstore"}/> | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.