diff --git a/src/components/CategoryNav.jsx b/src/components/CategoryNav.jsx index 5acf371..7a0153d 100644 --- a/src/components/CategoryNav.jsx +++ b/src/components/CategoryNav.jsx @@ -5,7 +5,7 @@ import CategoryNavItem from "./CategoryNavItem"; export default function CategoryNav({ filter, setFilter }) { const navItems = [ - {title: "🤗 All", category: "all"}, + {title: "🤗 All Tools", category: "all"}, ...data.tools ]; diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 5b6d45f..168f05b 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -81,9 +81,9 @@ const { site, title, tagline } = Astro.props; @@ -117,7 +117,7 @@ const { site, title, tagline } = Astro.props; margin-top: var(--spacing-00); } p.description-text { - max-inline-size: 574px; + max-inline-size: 570px; } .nu-u-link--subtle { color: var(--text-secondary) !important; diff --git a/src/pages/index.astro b/src/pages/index.astro index e59c03c..2bd48bf 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -11,7 +11,7 @@ import Dashboard from "../components/Dashboard";