mirror of
https://github.com/ershisan99/podcaster.git
synced 2025-12-18 05:09:30 +00:00
feat: add header styles
This commit is contained in:
@@ -7,9 +7,13 @@ export function Layout() {
|
|||||||
const isLoading = fetching > 0;
|
const isLoading = fetching > 0;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={"p-6 mx-auto max-w-screen-lg"}>
|
<div className={"mx-auto max-w-screen-lg p-6"}>
|
||||||
<header className={"flex items-center justify-between"}>
|
<header
|
||||||
<h1>
|
className={
|
||||||
|
"mb-4 flex items-center justify-between border-b border-b-slate-400 py-2"
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<h1 className={"text-2xl font-semibold text-sky-600"}>
|
||||||
<Link to={"/"}>Podcaster</Link>
|
<Link to={"/"}>Podcaster</Link>
|
||||||
</h1>
|
</h1>
|
||||||
{isLoading && <Spinner />}
|
{isLoading && <Spinner />}
|
||||||
|
|||||||
Reference in New Issue
Block a user