Skip to content

Commit

Permalink
feat: add web header page
Browse files Browse the repository at this point in the history
  • Loading branch information
phucvinh57 committed Sep 13, 2024
1 parent cdced92 commit 57ad0aa
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app/header.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
'use client';

import Link from "next/link";

export function AppHeader() {
return <div className="z-10 bg-white px-5 py-4 flex justify-between items-center shadow-md">
<div className="font-semibold text-sm">Bão số 3 Yagi</div>
<div className="flex gap-3">
<Link href={'/'} className="font-light text-sm">Trang chủ</Link>
<Link href={'/statistic'} className="font-light text-sm">Thống kê</Link>
</div>
</div>
}

0 comments on commit 57ad0aa

Please sign in to comment.