Skip to content

Commit

Permalink
update's
Browse files Browse the repository at this point in the history
  • Loading branch information
No0ne003 committed May 14, 2024
1 parent b9cae97 commit fbacccc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/pages/Home.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { projects } from "@/data/projects";
import { FaArrowRight, FaStar } from "react-icons/fa";
import { FaStar } from "react-icons/fa";
import { Link } from "react-router-dom";

function Home({ setCursorVariant }) {
Expand Down
16 changes: 8 additions & 8 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import tailwindCssAnimate from "tailwindcss-animate";
export default {
darkMode: ["class"],
content: [
'./index.html',
'./pages/*.{js,jsx}',
'./pages/**/*.{js,jsx}',
'./components/**/*.{js,jsx}',
'./src/**/*.{js,jsx}',
"./index.html",
"./pages/*.{js,jsx}",
"./pages/**/*.{js,jsx}",
"./components/**/*.{js,jsx}",
"./src/**/*.{js,jsx}",
],
prefix: "",
theme: {
Expand Down Expand Up @@ -75,10 +75,10 @@ export default {
"accordion-up": "accordion-up 0.2s ease-out",
},
fontFamily: {
"micro": ['"Micro 5", sans-serif'],
'poppins': ['"Poppins", sans-serif']
micro: ['"Micro 5", sans-serif'],
poppins: ['"Poppins", sans-serif'],
},
},
},
plugins: [tailwindCssAnimate],
}
};

0 comments on commit fbacccc

Please sign in to comment.