From 0a5ba7f121ae13733c85705ad5fc0d6a2fb51f06 Mon Sep 17 00:00:00 2001 From: Claas Date: Fri, 4 Oct 2024 20:15:03 +0200 Subject: [PATCH] Style main page with placeholders --- app/index.html | 2 +- app/src/components/Onboarding.jsx | 3 +- app/src/components/TopAppBar.jsx | 18 ++++++++++ app/src/routes/index.jsx | 60 +++++++++++++++++++++++++++++-- 4 files changed, 78 insertions(+), 5 deletions(-) create mode 100644 app/src/components/TopAppBar.jsx diff --git a/app/index.html b/app/index.html index 108249d..c6f83f3 100644 --- a/app/index.html +++ b/app/index.html @@ -8,7 +8,7 @@ Melt - + diff --git a/app/src/components/Onboarding.jsx b/app/src/components/Onboarding.jsx index 3dac0d7..6b71f91 100644 --- a/app/src/components/Onboarding.jsx +++ b/app/src/components/Onboarding.jsx @@ -23,7 +23,7 @@ export default function ({ setName }) { } return ( -
+
+ {/* Overengineered buttons styles is just fun. Some of this should probably be done in CSS or added Tailwind CSS utilitties. Follows Material You Filled Button specification*/} + } + /> + {/*
*/} + {/*

Welcome {app.name}

*/} + {/* Invite */} + {/*
*/} + +
+
    + + {() => ( +
  1. + + C + +
    +

    + Headline +

    +

    + Supporting text that is long enough to fill up multiple + lines + {/* Supporting text */} +

    +
    +

    + Now +

    +
  2. + )} +
    +
+
); -- 2.51.2