diff --git a/.cursorrules b/.cursorrules index 42f6ee4..ca57249 100644 --- a/.cursorrules +++ b/.cursorrules @@ -1,2 +1,3 @@ * Use Remix V2 syntax * Use TSDoc specification for docstrings +* Use TailwindCSS for styling diff --git a/.tool-versions b/.tool-versions index 0e81cf1..a945d85 100644 --- a/.tool-versions +++ b/.tool-versions @@ -3,5 +3,5 @@ pre-commit 3.7.0 nodejs 21.7.3 pnpm 9.9.0 yarn 1.22.22 -supabase-cli 2.1.1 +supabase-cli 2.2.1 terraform 1.5.4 diff --git a/app/components/molecules/TagSearchBar.tsx b/app/components/molecules/TagSearchBar.tsx index f116ea0..54fa239 100644 --- a/app/components/molecules/TagSearchBar.tsx +++ b/app/components/molecules/TagSearchBar.tsx @@ -92,7 +92,7 @@ const TagItem = ({ name, onClick, checked, isFocused }: TagItemProps) => { ); }; -interface TagOption { +export interface TagOption { name: string; selected: boolean; } @@ -220,7 +220,7 @@ export const TagSearchBar = ({ return (
- Created at{" "} + Published on{" "} {new Date(post.created_at).toLocaleDateString("en-US", { year: "numeric", - month: "numeric", + month: "long", day: "numeric", })}
diff --git a/app/components/organisms/Pagination.tsx b/app/components/organisms/Pagination.tsx index c86492f..cdc37eb 100644 --- a/app/components/organisms/Pagination.tsx +++ b/app/components/organisms/Pagination.tsx @@ -24,7 +24,7 @@ export const Pagination = ({ const endPage = Math.min(startPage + MAX_PAGES_PER_PAGE, pagesInTotal); return ( -