-
Notifications
You must be signed in to change notification settings - Fork 2
Fix outdated technology stack info on About page #21
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -91,36 +91,10 @@ export default function AboutPage() { | |
| Frontend | ||
| </Typography> | ||
| <ul> | ||
| <li>Next.js 14 + TypeScript</li> | ||
| <li>Material-UI (MUI) v5 + Emotion</li> | ||
| <li>SWR / React Query</li> | ||
| <li>NextAuth.js</li> | ||
| </ul> | ||
| </CardContent> | ||
| </Card> | ||
| </Grid> | ||
| <Grid size={{ xs: 12, md: 6 }}> | ||
| <Card | ||
| sx={{ | ||
| height: '100%', | ||
| borderRadius: 2, | ||
| boxShadow: '0 4px 12px rgba(0, 0, 0, 0.05)', | ||
| }} | ||
| > | ||
| <CardContent> | ||
| <Typography | ||
| variant="h6" | ||
| component="h3" | ||
| gutterBottom | ||
| sx={{ color: 'primary.main', fontWeight: 600 }} | ||
| > | ||
| Backend | ||
| </Typography> | ||
| <ul> | ||
| <li>NestJS 10 + TypeScript</li> | ||
| <li>tRPC</li> | ||
| <li>Prisma ORM</li> | ||
| <li>GitHub API (Octokit)</li> | ||
| <li>Next.js 16 + TypeScript</li> | ||
| <li>Material-UI (MUI) v9 + Emotion</li> | ||
| <li>TanStack Query v5</li> | ||
| <li>Tailwind CSS</li> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Description: Verify Tailwind CSS configuration and usage in the project
echo "=== Checking for Tailwind configuration files ==="
fd -t f 'tailwind.config' -x echo "Found: {}"
echo -e "\n=== Checking for Tailwind imports in CSS files ==="
rg -n '@import.*tailwind|@tailwind' -g '*.css' -g '*.scss'
echo -e "\n=== Checking for Tailwind class usage (sample) ==="
rg -n 'className=.*\b(bg-|text-|p-|m-|flex|grid|rounded)' --type tsx --type ts -C 1 | head -20
echo -e "\n=== Checking package.json for Tailwind ==="
cat package.json | jq '.dependencies.tailwindcss // .devDependencies.tailwindcss // "not found"'Repository: kanywst/IssueHub Length of output: 354 Remove Tailwind CSS from the About page technology stack. Tailwind CSS v4 is properly configured in the project ( Either remove Tailwind CSS from the displayed stack, or refactor styling to use Tailwind instead of Material-UI. 🤖 Prompt for AI Agents |
||
| </ul> | ||
| </CardContent> | ||
| </Card> | ||
|
Comment on lines
91
to
100
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The PR description mentions fixing the Grid layout structure, but the current change only removes the boundary between the two grid items (previously lines 101-102). This effectively merges them into a single grid item. However, if the opening |
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The GitHub API (Octokit) dependency is still present in
package.json(line 29) and is a core part of this application's architecture (fetching data in a static frontend-only app). It should be included in the technology stack list to accurately reflect the project's dependencies as intended by this PR.