Skip to content
Open
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
Binary file added public/images/member-shawky.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Fathom from "@/components/Fathom";

export const metadata: Metadata = {
title: "Raid Guild",
description: "We are slaying Moloch, one web3 build at a time.",
description: "Elite Raiders Conquering the Web3 Realm. Legendary design, development, and consulting. ",
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

Remove trailing space from description.

The description string ends with a trailing space after the period. This should be removed to avoid unnecessary whitespace in the metadata.

🔎 Proposed fix
-  description: "Elite Raiders Conquering the Web3 Realm. Legendary design, development, and consulting. ",
+  description: "Elite Raiders Conquering the Web3 Realm. Legendary design, development, and consulting.",
📝 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: "Elite Raiders Conquering the Web3 Realm. Legendary design, development, and consulting. ",
description: "Elite Raiders Conquering the Web3 Realm. Legendary design, development, and consulting.",
🤖 Prompt for AI Agents
In src/app/layout.tsx around line 10, the metadata description string contains
an extra trailing space after the final period; remove that trailing space so
the description ends immediately after the period (i.e., change "...consulting.
" to "...consulting.") to avoid unnecessary whitespace in the metadata.

};

export default function RootLayout({
Expand Down
8 changes: 8 additions & 0 deletions src/lib/data/members.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,14 @@ export const mercenaries: Mercenary[] = [
imagePath: "/images/member-penguin.png",
roleIcon: "/images/icon-og-raidguild.svg",
},
{
name: "Shawky",
title: "Fullstack",
link: "https://github.com/sshmm",
imagePath: "/images/member-shawky.png",
roleIcon: "/images/icon-og-marketingdesign.svg",
},

];

export const shuffledMercenaries = shuffleArray(mercenaries);