new bordered layout (max-w-6xl)

This commit is contained in:
Oliver Bryan
2025-10-26 10:24:46 +00:00
parent 7aca70e892
commit acd6264dcc
2 changed files with 12 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
---
const { currentPage } = Astro.props;
const { currentPage, innerClass } = Astro.props;
const pages = [
{ title: "home", path: "/" },
@@ -24,10 +24,10 @@ const pages = [
</style>
<header>
<div
class="w-full flex items-center justify-between px-4 py-2 border-b-1 border-ayu-gutter"
>
<div class="flex items-center">
<div class="w-full flex items-center justify-between border-ayu-gutter">
<div
class={`flex items-center border-b-1 lg:border-1 border-ayu-gutter py-2 ${innerClass}`}
>
<a href="/" class="flex items-center gap-2">
<img
src="/favicon.svg"