diff --git a/src/features/home/Home.jsx b/src/features/home/Home.jsx index 8d23cfc..a157149 100644 --- a/src/features/home/Home.jsx +++ b/src/features/home/Home.jsx @@ -1,4 +1,3 @@ -// src/pages/Home.jsx import { Link } from "react-router-dom"; import { IconCode, IconChecklist, IconUserScan } from "@tabler/icons-react"; import Particles from "@tsparticles/react"; @@ -6,6 +5,7 @@ import { particlesOptions, particlesVersion } from "@/config/particles"; import { useParticlesInit } from "../../shared/hooks/useParticlesInit"; const BRAND = "SkillBoost"; + const items = [ { title: "Coding Test", href: "/coding", icon: IconCode }, { title: "Code Review", href: "/review", icon: IconChecklist }, @@ -15,9 +15,7 @@ const items = [ export default function Home() { const init = useParticlesInit(); - if (!init) { - return null; - } + if (!init) return null; return (