diff --git a/package-lock.json b/package-lock.json index 6c15483..47c59d6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8661,9 +8661,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001669", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001669.tgz", - "integrity": "sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==", + "version": "1.0.30001741", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001741.tgz", + "integrity": "sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==", "dev": true, "funding": [ { diff --git a/src/components/PostCard.tsx b/src/components/PostCard.tsx index 139ce63..8a13a9f 100644 --- a/src/components/PostCard.tsx +++ b/src/components/PostCard.tsx @@ -148,7 +148,7 @@ const PostCard: React.FC = ({ post, commentCount = 0 }) => { {/* Content column */}
- +
{/* Post metadata */}
@@ -181,15 +181,17 @@ const PostCard: React.FC = ({ post, commentCount = 0 }) => { )}
- {/* Post title */} -

- {post.title} -

+ {/* Post title and content - clickable to navigate to post */} + +

+ {post.title} +

- {/* Post content preview */} -

- -

+ {/* Post content preview */} +

+ +

+ {/* Post actions */}
@@ -220,7 +222,7 @@ const PostCard: React.FC = ({ post, commentCount = 0 }) => { variant="ghost" />
- +
diff --git a/tailwind.config.ts b/tailwind.config.ts index bbdc785..54686b5 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -4,9 +4,7 @@ import tailwindcssAnimate from 'tailwindcss-animate'; export default { darkMode: ['class'], content: [ - './pages/**/*.{ts,tsx}', - './components/**/*.{ts,tsx}', - './app/**/*.{ts,tsx}', + './index.html', './src/**/*.{ts,tsx}', ], prefix: '',