Skip to content

Commit

Permalink
Merge pull request #81 from fac30/style/change-needs-icon
Browse files Browse the repository at this point in the history
Style/change needs icon
  • Loading branch information
maxitect authored Dec 15, 2024
2 parents 4aaf761 + 012d044 commit c83f0e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/home/components/HomeContent.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ArrowRightIcon, WrenchIcon } from "@heroicons/react/24/solid";
import {
PresentationChartLineIcon,
EllipsisHorizontalCircleIcon,
PuzzlePieceIcon,
ChartBarIcon,
} from "@heroicons/react/24/outline";
import Image from "next/image";
Expand Down Expand Up @@ -118,7 +118,7 @@ export default function HomeContent() {
/>
</div>
<div className=" mx-auto mt-4 mb-4 py-4 w-1/2 flex flex-col gap-8 items-center justify-center rounded-lg flex-1">
<EllipsisHorizontalCircleIcon className="w-8 h-8 mb-4" />
<PuzzlePieceIcon className="w-8 h-8 mb-4" />
<p className="text-base mb-1 text-center">
Improve your mood by identifying what you need and how to get it:
</p>
Expand Down
4 changes: 2 additions & 2 deletions src/ui/layout/Navbar/NavbarLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import {
HomeIcon,
PresentationChartLineIcon,
EllipsisHorizontalCircleIcon,
ChartBarIcon,
PuzzlePieceIcon,
} from "@heroicons/react/24/outline";
import { WrenchIcon } from "@heroicons/react/24/solid";

Expand All @@ -19,7 +19,7 @@ const links = [
destination: "/toolkit",
isToolkit: true,
},
{ title: "Needs", icon: EllipsisHorizontalCircleIcon, destination: "/needs" },
{ title: "Needs", icon: PuzzlePieceIcon, destination: "/needs" },
{ title: "Insights", icon: ChartBarIcon, destination: "/insights" },
];

Expand Down

0 comments on commit c83f0e1

Please sign in to comment.