Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import ListResources from "./pages/ResourceHub/resourcehub/ListResources";
import Base64Image from "./pages/DevUtilities/devutilities/Base64Image";
import Base64Url from "./pages/DevUtilities/devutilities/Base64Url";
import BcryptGenerator from "./pages/DevUtilities/devutilities/BcryptGenerator";
import BorderImageGenerator from "./pages/DevUtilities/devutilities/BorderImageGenerator";
import ChmodCalculator from "./pages/DevUtilities/devutilities/ChmodCalculator";
import ClipPathMaker from "./pages/DevUtilities/devutilities/ClipPathMaker";
import CodeSandbox from "./pages/DevUtilities/devutilities/CodeSandbox";
Expand Down Expand Up @@ -501,6 +502,10 @@ function AppInner({ toggleHUD, hudVisible }) {
path="/devutilities/css-gradient"
element={<CssGradientGenerator />}
/>
<Route
path="/devutilities/border-image"
element={<BorderImageGenerator />}
/>
<Route
path="/devutilities/glassmorphism"
element={<CssGlassmorphismPlayground />}
Expand Down
6 changes: 6 additions & 0 deletions src/config/sidebarSections.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,12 @@ const SIDEBAR_SECTIONS = [
description: "Create beautiful CSS gradients with live preview",
path: "/devutilities/css-gradient",
},
{
label: "CSS Border-Image Generator",
description:
"Design custom sliced image borders and generate copy-ready CSS properties visually.",
path: "/devutilities/border-image",
},
{
label: "Glassmorphism Playground",
description: "Design glassmorphism effects with shadows and blur",
Expand Down
21 changes: 21 additions & 0 deletions src/pages/DevUtilities/DevUtilities.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -964,6 +964,27 @@ const DevUtilities = () => {
</svg>
),
},
{
title: "CSS Border-Image Generator",
description:
"Design custom sliced image borders and generate copy-ready CSS properties visually.",
path: "/devutilities/border-image",
icon: (
<svg
className="w-6 h-6"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M4 8V6a2 2 0 012-2h2m8 0h2a2 2 0 012 2v2m0 8v2a2 2 0 01-2 2h-2m-8 0H6a2 2 0 01-2-2v-2m5-5h6m-6 3h6"
/>
</svg>
),
},
{
title: "Password Generator",
description:
Expand Down
Loading
Loading