-
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
2 changed files
with
26 additions
and
4 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,23 @@ | ||
import { Header as KvibHeader } from "@kvib/react"; | ||
|
||
export function Header() { | ||
return ( | ||
<header> | ||
<WarningBanner /> | ||
<KvibHeader /> | ||
</header> | ||
); | ||
} | ||
|
||
function WarningBanner() { | ||
return ( | ||
<div className="bg-red-50 text-red-900 text-sm font-medium px-4 py-2 rounded-md flex items-center flex-col"> | ||
<p> | ||
Denne siden er under utvikling. Vi er ikke helt sikre på at alt funker | ||
som det skal. | ||
</p> | ||
<p>Alt innhold blir liggende offentlig tilgjengelig.</p> | ||
<p>Vær forsiktig med å legge inn sensitiv/hemmelig informasjon.</p> | ||
</div> | ||
); | ||
} |
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