-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
cdced92
commit 57ad0aa
Showing
1 changed file
with
13 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,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> | ||
} |