13 lines
326 B
Plaintext
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>
|
|
}
|