Hayden Hargreaves 4299b1bfa2 (UI/STYLE): Simple changes to the navbar, wanted to have sticky.
Also, removed the examples segment.
2025-06-17 21:53:03 -07:00

13 lines
326 B
Plaintext

package templates
import "github.com/haydenhargreaves/Potion/internal/templates/components"
templ HomePage() {
@components.Navbar("home")
<div class="w-full h-[200vh] flex justify-center">
<div class="p-4 mx-4 md:mx-0 w-full md:w-1/2 md:pt-18 h-full border-l border-r border-gray-300">
Home Page!
</div>
</div>
}