Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/commands/commit.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ description: Create git commit for staged changes using template
- `refactor:` code changes that neither fix bugs nor add features
- `style:` code formatting, visual consistency, linting fixes; no functional change
- `chore:` dev workflow, workspace config, dependency updates, dev tools e.g. `.vscode/**/*`, `pyproject.toml`, `.gitignore`
- `docs:` documentation changes only e.g. `README.md`, `docs/**/*.md`
- `docs:` documentation changes only e.g. `README.md`, `docs/**/*.md`, `x_docs/**/*.md`
- `feature:` new feature for users (adds functionality)
</main_prefix>

Expand Down
22 changes: 22 additions & 0 deletions .claude/commands/merge-cleanup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
description: Post-merge cleanup: switch to main, pull, delete merged branch, prune
---

## Context

- Current branch: !`git branch --show-current`
- All local branches: !`git branch`
- Remote branches: !`git branch -r`

## Task

Michelle has merged her PR and wants to clean up. Please:

1. Switch to main branch
2. Pull latest changes
3. Delete the previous branch (the one shown above that is not main)
4. Prune stale remote-tracking references: `git fetch --prune`
5. Check both Git and GitHub to ensure clean status
6. Create narrow summary table with emojies to show everything is clean

If already on main with no other branches, just confirm everything is clean.
Comment on lines +1 to +22
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix minor spelling in merge-cleanup instructions

Step 6 uses “emojies”, which should be “emojis”. Everything else reads clearly.

-6. Create narrow summary table with emojies to show everything is clean
+6. Create narrow summary table with emojis to show everything is clean
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
---
description: Post-merge cleanup: switch to main, pull, delete merged branch, prune
---
## Context
- Current branch: !`git branch --show-current`
- All local branches: !`git branch`
- Remote branches: !`git branch -r`
## Task
Michelle has merged her PR and wants to clean up. Please:
1. Switch to main branch
2. Pull latest changes
3. Delete the previous branch (the one shown above that is not main)
4. Prune stale remote-tracking references: `git fetch --prune`
5. Check both Git and GitHub to ensure clean status
6. Create narrow summary table with emojies to show everything is clean
If already on main with no other branches, just confirm everything is clean.
---
description: Post-merge cleanup: switch to main, pull, delete merged branch, prune
---
## Context
- Current branch: !`git branch --show-current`
- All local branches: !`git branch`
- Remote branches: !`git branch -r`
## Task
Michelle has merged her PR and wants to clean up. Please:
1. Switch to main branch
2. Pull latest changes
3. Delete the previous branch (the one shown above that is not main)
4. Prune stale remote-tracking references: `git fetch --prune`
5. Check both Git and GitHub to ensure clean status
6. Create narrow summary table with emojis to show everything is clean
If already on main with no other branches, just confirm everything is clean.
🧰 Tools
🪛 LanguageTool

[formatting] ~7-~7: These punctuation marks differ from each other. Use only one if you are ending a sentence.
Context: ... prune --- ## Context - Current branch: !git branch --show-current - All local ...

(DOUBLE_PUNCTUATION_PREMIUM)


[formatting] ~8-~8: These punctuation marks differ from each other. Use only one if you are ending a sentence.
Context: ...nch --show-current - All local branches: !git branch - Remote branches: !git br...

(DOUBLE_PUNCTUATION_PREMIUM)


[formatting] ~9-~9: These punctuation marks differ from each other. Use only one if you are ending a sentence.
Context: ...ranches: !git branch - Remote branches: !git branch -r ## Task Michelle has m...

(DOUBLE_PUNCTUATION_PREMIUM)

🤖 Prompt for AI Agents
In .claude/commands/merge-cleanup.md around lines 1 to 22, the word "emojies" is
misspelled; change it to "emojis" in step 6 and keep the rest of the
instructions unchanged so the step reads "Create narrow summary table with
emojis to show everything is clean."

1 change: 1 addition & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

"mcp__playwright__browser_close",
"mcp__playwright__browser_console_messages",
"mcp__playwright__browser_evaluate",
"mcp__playwright__browser_navigate",
"mcp__playwright__browser_navigate_back",
"mcp__playwright__browser_network_requests",
Expand Down
Binary file modified app/favicon.ico
Binary file not shown.
13 changes: 8 additions & 5 deletions app/fonts.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
import { JetBrains_Mono, Lora, Montserrat } from "next/font/google";
import { Inter, JetBrains_Mono, Space_Grotesk } from "next/font/google";

export const montserrat = Montserrat({
variable: "--font-montserrat",
// Variable font (weights 300–700) — for headings/display
export const spaceGrotesk = Space_Grotesk({
variable: "--font-space-grotesk",
subsets: ["latin"],
display: "swap",
});

export const lora = Lora({
variable: "--font-lora",
// Variable font (weights 100–900) — for body text
export const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
display: "swap",
});

// Variable font (weights 100–800) — for code
export const jetbrainsMono = JetBrains_Mono({
variable: "--font-jetbrains-mono",
subsets: ["latin"],
Expand Down
Loading
Loading