Skip to content
Open
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
2 changes: 1 addition & 1 deletion components/AllApps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type AllAppsProps = {

const AllApps: FC<AllAppsProps> = ({ applications }) => {
return (
<div className="container px-6 pb-2 mx-auto mt-24">
<div className="container px-6 pb-2 mx-auto mt-24 bg-secondbg-white dark:bg-secondbg-dark">
<H2 className="text-center text-transparent mb-14 bg-gradient-to-br bg-clip-text from-primary to-slate-500 dark:text-gray-300">
All Available Tools
</H2>
Expand Down
Binary file added public/secondbg-dark.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/secondbg-white.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ module.exports = {
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",

// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
Expand All @@ -17,6 +15,8 @@ module.exports = {
backgroundImage: {
"light-pattern": "url('/light-bg.webp')",
"dark-pattern": "url('/dark-bg.webp')",
"secondbg-white": "url('/secondbg-white.webp')",
"secondbg-dark": "url('/secondbg-dark.webp')",
},
colors: {
primary: "#202328",
Expand Down