this repo has no description
lustre frontent oat-ui gleam
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ’„ add section with checkmarks on home page

+22 -2
+22 -2
src/client/page/home.gleam
··· 17 17 element.fragment([ 18 18 html.section( 19 19 [ 20 - class("flex flex-col gap-6 items-center py-10"), 20 + class("flex flex-col gap-4 items-center py-10 lg:gap-8"), 21 21 class("from-blue-50 via-white to-green-50 bg-linear-to-br"), 22 22 ], 23 23 [ ··· 40 40 ), 41 41 ]), 42 42 43 - html.div([class("grid grid-cols-1 gap-4 lg:grid-cols-2")], [ 43 + // Buttons 44 + html.div([class("grid grid-cols-1 gap-4 sm:grid-cols-2 lg:gap-6")], [ 44 45 // Simulator 45 46 html.a( 46 47 [ ··· 60 61 [html.text("Falar com Especialista")], 61 62 ), 62 63 ]), 64 + 65 + // ๏’ž 66 + html.div( 67 + [class("grid grid-cols-1 gap-2 md:gap-4 lg:grid-cols-3 text-subtext")], 68 + [ 69 + html.div([class("hstack")], [ 70 + icon.circle_check([class("text-success")]), 71 + html.text("Sem investimento inicial"), 72 + ]), 73 + html.div([class("hstack")], [ 74 + icon.circle_check([class("text-success")]), 75 + html.text("Economia garantida"), 76 + ]), 77 + html.div([class("hstack")], [ 78 + icon.circle_check([class("text-success")]), 79 + html.text("Suporte dedicado"), 80 + ]), 81 + ], 82 + ), 63 83 ], 64 84 ), 65 85 ])