Skip to content

Commit

Permalink
update about
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeparticle committed Oct 9, 2023
1 parent 249c820 commit 44467e4
Showing 1 changed file with 29 additions and 9 deletions.
38 changes: 29 additions & 9 deletions ui/src/data/featureData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ const LIBRARY_URLS: LibraryList = {
diff: "https://www.npmjs.com/package/diff",
"@excalidraw/excalidraw":
"https://www.npmjs.com/package/@excalidraw/excalidraw",
"js-beautify": "https://www.npmjs.com/package/js-beautify",
"@monaco-editor/react":
"https://www.npmjs.com/package/@monaco-editor/react",
};

interface Feature {
Expand Down Expand Up @@ -67,16 +70,16 @@ export const FEATURE_DATA: Feature[] = [
fullDescription:
"Round or square? Dotted or dashed? Vivid or monochrome? Customize your border styles and add a splash of color to make your website's edges as unique as your imagination. Generate border codes that match your creative vision with ease. It's the ultimate playground for crafting stylish CSS borders that elevate your web creations from mundane to magnificent.",
link: routesById.borderradius.path,
library: [{ name: "faker.js", url: LIBRARY_URLS["faker-js"] }],
library: [{ name: "Vanilla JS", url: "" }],
},
{
key: routesById.boxshadow.id,
name: routesById.boxshadow.title,
shortDescription: routesById.boxshadow.description,
fullDescription: "",
link: routesById.boxshadow.path,
library: [{ name: "Vanilla JS", url: "" }],
},
// {
// key: routesById.boxshadow.id,
// name: routesById.boxshadow.title,
// shortDescription: routesById.boxshadow.description,
// fullDescription: "",
// link: routesById.boxshadow.path,
// library: [{ name: "faker.js", url: LIBRARY_URLS["faker-js"] }],
// },
{
key: routesById.base64.id,
name: routesById.base64.title,
Expand Down Expand Up @@ -291,4 +294,21 @@ export const FEATURE_DATA: Feature[] = [
link: routesById.blog.path,
library: [{ name: "Vanilla JS", url: "" }],
},
{
key: routesById.codeformatter.id,
name: routesById.codeformatter.title,
shortDescription: routesById.codeformatter.description,
fullDescription: "",
link: routesById.codeformatter.path,
library: [
{
name: "Monaco Editor",
url: LIBRARY_URLS["@monaco-editor/react"],
},
{
name: "js-beautify",
url: LIBRARY_URLS["js-beautify"],
},
],
},
];

0 comments on commit 44467e4

Please sign in to comment.