diff --git a/pkg/nebula/assets/static.pkl b/pkg/nebula/assets/static.pkl index d8f6de5f5..278447e58 100644 --- a/pkg/nebula/assets/static.pkl +++ b/pkg/nebula/assets/static.pkl @@ -15,8 +15,8 @@ hero = new Hero { }; image = new Image { src = "https://cdn.sonr.id/img/hero-clipped.svg"; - width = "560"; - height = "560"; + width = "640"; + height = "640"; }; }; diff --git a/pkl/uiux.pkl b/pkl/uiux.pkl index 5217a5d31..f5764cfea 100644 --- a/pkl/uiux.pkl +++ b/pkl/uiux.pkl @@ -89,46 +89,3 @@ class RegistrationForm { inputs: List } -registrationForm : RegistrationForm = new RegistrationForm { - title = "Register"; - description = "Create your Sonr account"; - state = "initial"; - inputs = [ - new Input { - label = "Username"; - type = "text"; - placeholder = "Enter your username"; - value = ""; - error = ""; - help = ""; - required = true; - }, - new Input { - label = "Email"; - type = "email"; - placeholder = "Enter your email"; - value = ""; - error = ""; - help = ""; - required = true; - }, - new Input { - label = "Password"; - type = "password"; - placeholder = "Enter your password"; - value = ""; - error = ""; - help = ""; - required = true; - }, - new Input { - label = "Confirm Password"; - type = "password"; - placeholder = "Confirm your password"; - value = ""; - error = ""; - help = ""; - required = true; - } - ]; -};