Added some logos up in this (#40)

This commit is contained in:
Kieran 2024-02-29 17:37:14 -08:00 committed by GitHub
parent 1f4823bda9
commit d2c2cda479
7 changed files with 10 additions and 12 deletions

View file

@ -2,8 +2,9 @@
<div class="relative flex flex-1 flex-col overflow-y-auto overflow-x-hidden">
<header class="sticky top-0 z-999 flex w-full bg-white drop-shadow-1 dark:bg-boxdark dark:drop-shadow-none">
<div class="flex flex-grow items-center px-4 py-4 shadow-2 md:px-6 2xl:px-11">
<div class="flex items-center gap-2 sm:gap-4">
<h2 class="text-title-md2 font-bold text-white">Pinchflat</h2>
<div class="flex items-center">
<img src={~p"/images/logo.png?cachebust=2024-02-29"} alt="Pinchflat" class="w-9 h-9" />
<h2 class="text-xl font-bold text-white pl-2">Pinchflat</h2>
</div>
</div>
</header>

View file

@ -7,8 +7,9 @@
>
<.icon name="hero-bars-3" />
</button>
<a class="hidden sm:block flex-shrink-0 lg:hidden" href="/">
<h2 class="text-title-md2 font-bold text-white">Pinchflat</h2>
<a class="hidden sm:flex items-center lg:hidden" href="/">
<img src={~p"/images/logo.png?cachebust=2024-02-29"} alt="Pinchflat" class="w-9 h-9" />
<h2 class="text-xl font-bold text-white pl-2">Pinchflat</h2>
</a>
</div>
<div class="bg-meta-4 rounded-md">

View file

@ -4,8 +4,9 @@
@click.outside="sidebarToggle = false"
>
<div class="flex items-center justify-between gap-2 px-6 py-5.5 lg:py-6.5">
<a href="/">
<h2 class="text-title-md2 font-bold text-white">Pinchflat</h2>
<a href="/" class="flex items-center">
<img src={~p"/images/logo.png"} alt="Pinchflat" class="w-9 h-9" />
<h2 class="text-xl font-bold text-white pl-2">Pinchflat</h2>
</a>
<button class="block lg:hidden" @click.stop="sidebarToggle = !sidebarToggle">

View file

@ -8,6 +8,7 @@
<%= assigns[:page_title] || "Pinchflat" %>
</.live_title>
<link phx-track-static rel="stylesheet" href={~p"/assets/app.css"} />
<link rel="icon" type="image/x-icon" href={~p"/favicon.ico?cachebust=2024-02-29"} />
<script defer phx-track-static type="text/javascript" src={~p"/assets/app.js"}>
</script>
</head>