-
{name}
+
{name}
{projectContent?.tldr && (
-
-
{projectContent?.tldr}
+
+
+ {projectContent?.tldr}
+
)}
-
- {showLinks && (
-
- {Object.entries(links ?? {})?.map(([website, url], index) => {
- return (
-
- )
- })}
-
- )}
+
{projectNotActive && (
-
- {t("notCurrentlyActive")}
+
+ {t("inactive")}
)}
+
+ {showLinks && (
+
+ {Object.entries(links ?? {})?.map(([website, url], index) => {
+ return (
+
+ )
+ })}
+
+ )}
+ {cardTags && (
+
+ {cardTags?.primary && (
+
+ {cardTags?.primary}
+
+ )}
+ {cardTags?.secondary && (
+
+ {cardTags?.secondary}
+
+ )}
+
+ )}
+
diff --git a/components/project/project-filters-bar.tsx b/components/project/project-filters-bar.tsx
index bf1afba5..ff23f84b 100644
--- a/components/project/project-filters-bar.tsx
+++ b/components/project/project-filters-bar.tsx
@@ -127,6 +127,9 @@ export default function ProjectFiltersBar({ lang }: LangProps["params"]) {
const searchParams = useSearchParams()
const [searchQuery, setSearchQuery] = useState("")
const [filterCount, setFilterCount] = useState(0)
+ const [activeItem, setActiveItem] = useState
(
+ ProjectSections?.[0]
+ )
const { filters, toggleFilter, queryString, activeFilters, onFilterProject } =
useProjectFiltersState((state) => state)
@@ -296,40 +299,62 @@ export default function ProjectFiltersBar({ lang }: LangProps["params"]) {