Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
persisst /
PerSIsst-Lab-main /
v6 /
[ HOME SHELL ]
Name
Size
Permission
Action
.next
[ DIR ]
drwxr-xr-x
.vscode
[ DIR ]
drwxr-xr-x
node_modules
[ DIR ]
drwxr-xr-x
out
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
.eslintrc.json
64
B
-rw-r--r--
.gitignore
497
B
-rw-r--r--
README.md
1.45
KB
-rw-r--r--
components.json
468
B
-rw-r--r--
next-env.d.ts
228
B
-rw-r--r--
next.config.ts
493
B
-rw-r--r--
package-lock.json
108.85
KB
-rw-r--r--
package.json
936
B
-rw-r--r--
postcss.config.mjs
143
B
-rw-r--r--
tailwind.config.ts
3.58
KB
-rw-r--r--
tsconfig.json
649
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tailwind.config.ts
import type { Config } from "tailwindcss"; import plugin from 'tailwindcss/plugin'; const MyClass = plugin(function ({ addUtilities }) { addUtilities({ ".vinay-flip-180": { transform: "rotateY(180deg)", }, ".preserve-3d": { transformStyle: "preserve-3d", }, ".perspective": { perspective: "1000px", }, ".backface-hidden": { backfaceVisibility: "hidden", }, }); }); const { default: flattenColorPalette, } = require("tailwindcss/lib/util/flattenColorPalette"); const config: Config = { darkMode: ["class"], content: [ "./src/pages/**/*.{js,ts,jsx,tsx,mdx}", "./src/components/**/*.{js,ts,jsx,tsx,mdx}", "./src/app/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: { animation: { aurora: 'aurora 60s linear infinite', 'accordion-down': 'accordion-down 0.2s ease-out', 'accordion-up': 'accordion-up 0.2s ease-out', spotlight: "spotlight 2s ease .75s 1 forwards", }, keyframes: { aurora: { from: { backgroundPosition: '50% 50%, 50% 50%' }, to: { backgroundPosition: '350% 50%, 350% 50%' } }, spotlight: { "0%": { opacity: '0', transform: "translate(-72%, -62%) scale(0.5)", }, "100%": { opacity: '1', transform: "translate(-50%,-40%) scale(1)", }, }, 'accordion-down': { from: { height: '0' }, to: { height: 'var(--radix-accordion-content-height)' } }, 'accordion-up': { from: { height: 'var(--radix-accordion-content-height)' }, to: { height: '0' } } }, colors: { background: 'hsl(var(--background))', foreground: 'hsl(var(--foreground))', card: { DEFAULT: 'hsl(var(--card))', foreground: 'hsl(var(--card-foreground))' }, popover: { DEFAULT: 'hsl(var(--popover))', foreground: 'hsl(var(--popover-foreground))' }, primary: { DEFAULT: 'hsl(var(--primary))', foreground: 'hsl(var(--primary-foreground))' }, secondary: { DEFAULT: 'hsl(var(--secondary))', foreground: 'hsl(var(--secondary-foreground))' }, muted: { DEFAULT: 'hsl(var(--muted))', foreground: 'hsl(var(--muted-foreground))' }, accent: { DEFAULT: 'hsl(var(--accent))', foreground: 'hsl(var(--accent-foreground))' }, destructive: { DEFAULT: 'hsl(var(--destructive))', foreground: 'hsl(var(--destructive-foreground))' }, border: 'hsl(var(--border))', input: 'hsl(var(--input))', ring: 'hsl(var(--ring))', chart: { '1': 'hsl(var(--chart-1))', '2': 'hsl(var(--chart-2))', '3': 'hsl(var(--chart-3))', '4': 'hsl(var(--chart-4))', '5': 'hsl(var(--chart-5))' } }, fontFamily: { poppins: [ 'Poppins', 'sans-serif' ] }, aspectRatio: { '4/3': '4 / 3', '3/2': '3 / 2' }, borderRadius: { lg: 'var(--radius)', md: 'calc(var(--radius) - 2px)', sm: 'calc(var(--radius) - 4px)' } } }, plugins: [addVariablesForColors, MyClass, require("tailwindcss-animate")], }; function addVariablesForColors({ addBase, theme }: any) { let allColors = flattenColorPalette(theme("colors")); let newVars = Object.fromEntries( Object.entries(allColors).map(([key, val]) => [`--${key}`, val]) ); addBase({ ":root": newVars, }); } export default config;
Close