add(project): initial commit

This commit is contained in:
maotovisk 2025-07-28 08:43:15 -03:00
parent f34565bf49
commit cf17a4ec59
11 changed files with 628 additions and 0 deletions

9
internal/ui/page.go Normal file
View file

@ -0,0 +1,9 @@
package ui
import (
"gioui.org/layout"
)
type Page interface {
Layout(gtx layout.Context) layout.Dimensions
}