Skip to content

Commit 1afb6b0

Browse files
authored
Merge pull request #195 from icflorescu/next
Minor docs website updates
2 parents ef504ed + bb21186 commit 1afb6b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/NavbarButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function NavbarButton({ color, icon, title, href, onClick, expanded }: Na
2121
const isExternal = !!href?.startsWith('http');
2222
const Icon = onClick ? IconChevronRight : icon;
2323
const pathname = usePathname();
24-
// this is to make sure for works for trailing slashes
24+
// make sure it works with trailing slashes
2525
const isCurrent = pathname === `${href}/` || pathname === href;
2626

2727
const content = (

lib/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const getRouteMetadata = memoize((href: Route): Metadata => {
1616
const { title: rawTitle, description } = route;
1717
const title =
1818
href === '/'
19-
? `${PRODUCT_NAME} - enhance your Mantine-based UIs with desktop-grade context menus`
19+
? `${PRODUCT_NAME} - enhance your web applications with desktop-grade context menus`
2020
: `${addExamplesPrefix({ title: rawTitle, href })} | ${PRODUCT_NAME}`;
2121
const hrefWithTrailingSlash = href === '/' ? href : `${href}/`;
2222

0 commit comments

Comments
 (0)