Skip to content

Commit

Permalink
chore: 이동 버튼 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Xvezda committed May 15, 2024
1 parent 80b7479 commit d2180f1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions apps/web/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Image from 'next/image';
import Link from 'next/link';
import { Button } from '@/components/ui/button';

import bufferLogoImage from './icon-resized.png';

Expand All @@ -22,13 +23,18 @@ export default function Home() {
</section>
<section className="w-full py-12 md:py-18">
<div className="container grid gap-6 px-4 text-center md:px-6 lg:grid-cols-1 lg:gap-10">
<Link href="https://buffer.cheda.kr" className="flex flex-col items-center space-y-2">
<div className="flex flex-col items-center space-y-2">
<Image src={bufferLogoImage} width="57" height="57" alt="버퍼 로고" unoptimized />
<div className="space-y-1">
<h3 className="text-lg font-bold">버퍼 확장 프로그램</h3>
<p className="text-sm text-gray-500 dark:text-gray-400">스트리밍 플랫폼 치지직 기능 확장</p>
</div>
</Link>
<Button variant="outline" asChild>
<Link href="https://buffer.cheda.kr">
이동 &rarr;
</Link>
</Button>
</div>
</div>
</section>
</main>
Expand Down

0 comments on commit d2180f1

Please sign in to comment.