
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
This project was built by tailwind for React and Next.js projects.
You can check the storybook in the pbkit.pezeshkbook.com.
using npm:
npm install --save @pezeshk-book/ui-kit
Add the Tailwind directives to your CSS global
@tailwind base;
@tailwind components;
@tailwind utilities;
Add the Tailwind directives to your global.css
@tailwind base;
@tailwind components;
@tailwind utilities;
tailwind.config will be generated automatically
for more configs you can visit - tailwind Documentation
in your tailwind.config.js file there are 4 types of font (light, regular, medium and bold) which will be use in Text component.
the type props in Text component will handle these 4 fonts.
\
first you need to create a folder named fonts in your public directory.
add these lines of code in your CSS global
@font-face {
font-family: 'fontMedium';
src: url('{relative path to your added font}') format('truetype');
font-display: swap;
}
@font-face {
font-family: 'fontRegular';
src: url('{relative path to your added font}') format('truetype');
font-display: swap;
}
@font-face {
font-family: 'fontBold';
src: url('{relative path to your added font}') format('truetype');
font-display: swap;
}
@font-face {
font-family: 'fontLight';
src: url('{relative path to your added font}') format('truetype');
font-display: swap;
}
and you are ready to go, just like that (^_^)
FAQs
UIkit components for use in React or Next.js.
We found that pb-ui-kit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.