From 0dbd6f43aa3be336afe4315a3e50958fd5b76ae9 Mon Sep 17 00:00:00 2001 From: Eshan Roy Date: Tue, 3 Dec 2024 19:51:48 +0530 Subject: [PATCH] IDK --- src/pages/Home.tsx | 2 +- tailwind.config.js | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 4f7395a..8cd36c5 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -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'; diff --git a/tailwind.config.js b/tailwind.config.js index d21f1cd..f75d088 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -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: [], -}; +}