This commit is contained in:
Eshan Roy
2024-12-03 19:51:48 +05:30
parent 01ddacda24
commit 0dbd6f43aa
2 changed files with 7 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
import React from 'react';
// import React from 'react';
import { ArrowRight, Shield, Settings, Activity, Cpu, Cloud, Code, Users } from 'lucide-react';
import ImageSlider from '../components/home/ImageSlider';
import PenTestTools from '../components/home/PenTestTools';

View File

@@ -1,8 +1,11 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx}',
// Add paths to other files that use Tailwind
],
theme: {
extend: {},
},
plugins: [],
};
}