Skip to content

Commit

Permalink
update copy
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrkulpinski committed Jul 11, 2024
1 parent b02f6fb commit b598502
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion app/routes/_index/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { LATEST_TOOLS_TRESHOLD, SITE_DESCRIPTION, SITE_TAGLINE } from "~/utils/c
import { getCurrentPHLaunch } from "~/utils/helpers"
import { getMetaTags } from "~/utils/meta"
import { Search } from "./Search"
import plur from "plur"

export const meta: MetaFunction = ({ matches, location }) => {
return getMetaTags({
Expand Down Expand Up @@ -64,7 +65,7 @@ export default function Index() {
asChild
>
<Link to="/latest">
<Ping /> {newToolCount} tools added this week
<Ping /> {newToolCount} new {plur("tool", newToolCount)} added
</Link>
</Badge>
)}
Expand Down
2 changes: 1 addition & 1 deletion app/routes/alternatives.$slug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const loader = async ({ params: { slug } }: LoaderFunctionArgs) => {

const meta = {
title: `Best Open Source ${alternative.name} Alternatives`,
description: `A collection of the best open source ${alternative.name} alternatives. Discover the best alternatives for ${alternative.name} that are open source and free to use or self-hostable.`,
description: `A curated collection of the ${tools.length} best open source alternatives to ${alternative.name}. Each listing includes a website screenshot along with a detailed review of its features.`,
}

return json(
Expand Down
2 changes: 1 addition & 1 deletion app/routes/categories.$slug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const loader = async ({ params: { slug } }: LoaderFunctionArgs) => {

const meta = {
title: `Best Open Source ${name}`,
description: `A collection of the best open source ${name}. Find the best ${name} that are open source and free to use/self-hostable.`,
description: `A curated collection of the ${tools.length} best open source ${name} for inspiration and reference. Each listing includes a website screenshot along with a detailed review of its features.`,
}

return json(
Expand Down
2 changes: 1 addition & 1 deletion app/routes/languages.$slug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const loader = async ({ params: { slug } }: LoaderFunctionArgs) => {

const meta = {
title: `Best ${language.name} Open Source Projects`,
description: `A collection of the best open source software tools written in ${language.name}. Find the most popular and trending open source projects to learn from, contribute to, or use in your own projects.`,
description: `A curated collection of the ${tools.length} best open source software written in ${language.name}. Find the most popular and trending open source projects to learn from, contribute to, or use in your own projects.`,
}

return json(
Expand Down
2 changes: 1 addition & 1 deletion app/routes/licenses.$slug.tools.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const loader = async ({ params: { slug } }: LoaderFunctionArgs) => {

const meta = {
title: `Best ${license.name} Licensed Open Source Software`,
description: `A collection of the best open source software licensed under ${license.name}. Find the best tools, libraries, and frameworks for your next project.`,
description: `A curated collection of the ${tools.length} best open source software licensed under ${license.name}. Find the best tools, libraries, and frameworks for your next project.`,
}

return json(
Expand Down
2 changes: 1 addition & 1 deletion app/routes/topics.$slug.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const loader = async ({ params: { slug } }: LoaderFunctionArgs) => {

const meta = {
title: `Best Open Source Projects tagged "${name}"`,
description: `A collection of the best open source projects tagged "${name}". Find the best tools for ${name} that are open source and free to use/self-hostable.`,
description: `A curated collection of the ${tools.length} best open source projects tagged "${name}". Each listing includes a website screenshot along with a detailed review of its features.`,
}

return json(
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.7.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"organizeImports": {
"enabled": true
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^1.7.1",
"@biomejs/biome": "^1.8.3",
"@content-collections/core": "^0.6.0",
"@content-collections/remix-vite": "^0.1.1",
"@remix-run/dev": "^2.10.0",
Expand Down

0 comments on commit b598502

Please sign in to comment.