This is a temporary measure, until the favorites and shopping list pages are implemented.
17 lines
553 B
Plaintext
17 lines
553 B
Plaintext
package templates
|
|
|
|
import "github.com/haydenhargreaves/Potion/internal/templates/components"
|
|
|
|
templ ListPage() {
|
|
@components.Navbar("list")
|
|
<div class="w-full h-screen flex justify-center">
|
|
<div class="mx-2 md:mx-0 w-full md:w-1/2 md:pt-14 h-full border-l border-r border-gray-300 bg-white">
|
|
<div class="flex flex-col items-center justify-center h-full gap-y-2">
|
|
<h1 class="text-4xl text-gray-800 font-semibold">Page Under Construction </h1>
|
|
<p class="text-gray-700">Sit tight, this page is coming soon!</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|
|
|