@@ -4,48 +4,51 @@ import Blade from "../visuals/blade";
44const data = [
55 {
66 icon : "ri-file-list-3-line" ,
7+ title : "Commands" ,
78 themes : "bg-red-200 text-red-700" ,
89 desc :
9- "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Vel magnam expedita " ,
10+ "Flexible command formats and auto discovery. Limitless nested sub commands and dynamic command execution. " ,
1011 } ,
1112 {
1213 icon : "ri-terminal-window-line" ,
14+ title : "Typescript or JavaScript" ,
1315 themes : "bg-indigo-200 text-indigo-700" ,
1416 desc :
15- "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Vel magnam expedita " ,
17+ "Write in typescript with full types support without any additional setup. " ,
1618 } ,
1719 {
1820 icon : "ri-page-separator" ,
21+ title : "Plugins" ,
1922 themes : "bg-blue-200 text-blue-700" ,
2023 desc :
21- "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Vel magnam expedita " ,
24+ "Lesy is build with powerful plugin architecture. Add cool features to your app with plugins. " ,
2225 } ,
2326 {
2427 icon : "ri-question-line" ,
2528 themes : "bg-pink-200 text-pink-700" ,
29+ title : "Auto help" ,
2630 desc :
27- "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Vel magnam expedita " ,
31+ "Fully customizable beautiful automatic help generation with help plugin " ,
2832 } ,
2933 {
3034 icon : "ri-shopping-bag-3-line" ,
35+ title : "Middlewares" ,
3136 themes : "bg-teal-200 text-teal-700" ,
3237 desc :
33- "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Vel magnam expedita " ,
38+ "Sync and Async middlewares if you want to change the flow or behaviour of the app " ,
3439 } ,
3540 {
3641 icon : "ri-settings-3-line" ,
42+ title : "Configurable" ,
3743 themes : "bg-purple-200 text-purple-700" ,
3844 desc :
39- "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Vel magnam expedita " ,
45+ "Whether it is a simple global/local config or from config file, its just easy " ,
4046 } ,
4147] ;
4248
4349const Features = ( ) => {
4450 return (
45- < div className = "container mx-auto py-24 pb-10 lg:pb-24 mt-12" >
46- < div className = "bg-secondary w-5/6 lg:w-2/6 rounded-lg text-white font-medium pl-10 pr-40 py-6 happy mb-20 mx-auto" >
47- Some cool features that you should try today!
48- </ div >
51+ < div className = "container mx-auto py-10 pb-10 lg:pb-24 mt-12" >
4952 < div className = "flex flex-wrap" >
5053 { data . map ( ( d ) => (
5154 < div className = "lg:w-2/6 mb-12 px-6" >
0 commit comments