diff --git a/app/(app)/articles/_client.tsx b/app/(app)/articles/_client.tsx index 25b83e2e..ca47ed42 100644 --- a/app/(app)/articles/_client.tsx +++ b/app/(app)/articles/_client.tsx @@ -158,10 +158,10 @@ const ArticlesPage = () => {
-
+
{`"CodĂș @@ -191,7 +191,7 @@ const ArticlesPage = () => { key={title} // only reason this is toLowerCase is to make url look nicer. Not needed for functionality href={`/articles?tag=${title.toLowerCase()}`} - className="border border-neutral-300 bg-white px-6 py-2 text-neutral-900 dark:border-neutral-600 dark:bg-neutral-900 dark:text-neutral-50" + className="rounded border border-neutral-300 bg-white px-6 py-2 text-neutral-900 dark:border-neutral-600 dark:bg-neutral-900 dark:text-neutral-50" > {getCamelCaseFromLower(title)} diff --git a/app/(app)/page.tsx b/app/(app)/page.tsx index a25d6e72..0b068d65 100644 --- a/app/(app)/page.tsx +++ b/app/(app)/page.tsx @@ -52,10 +52,10 @@ const Home = async () => {
-
+
{`"CodĂș diff --git a/components/ArticlePreview/ArticlePreview.tsx b/components/ArticlePreview/ArticlePreview.tsx index 71c2009c..f8ea7010 100644 --- a/components/ArticlePreview/ArticlePreview.tsx +++ b/components/ArticlePreview/ArticlePreview.tsx @@ -96,7 +96,8 @@ const ArticlePreview: NextPage = ({ }; return ( -
+
+
{name} diff --git a/components/PopularTags/PopularTags.tsx b/components/PopularTags/PopularTags.tsx index 14a6764e..e6a334d9 100644 --- a/components/PopularTags/PopularTags.tsx +++ b/components/PopularTags/PopularTags.tsx @@ -21,7 +21,7 @@ export default async function PopularTags() { // only reason this is toLowerCase is to make url look nicer. Not needed for functionality href={`/articles?tag=${tag.title.toLowerCase()}`} key={tag.title} - className="border border-neutral-300 bg-white px-6 py-2 text-neutral-900 dark:border-neutral-600 dark:bg-neutral-900 dark:text-neutral-50" + className="rounded border border-neutral-300 bg-white px-6 py-2 text-neutral-900 dark:border-neutral-600 dark:bg-neutral-900 dark:text-neutral-50" > {getCamelCaseFromLower(tag.title)}