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
2 changes: 1 addition & 1 deletion apps/website/app/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ const Home = async () => {

<footer className="mt-12 border-t border-neutral-light/10 bg-neutral-dark px-6 py-6">
<div className="mx-auto flex max-w-6xl items-center justify-between">
<p className="text-secondary">
<p className="text-orange-500">

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🟑 Hardcoded text-orange-500 bypasses the design system color tokens

The footer copyright text was changed from text-secondary (#5F57C0) to text-orange-500 (#f97316), a raw Tailwind utility color. The shared tailwind config (packages/tailwind-config/tailwind.config.ts) defines design tokens (primary: #FF8C4B, secondary: #5F57C0), and the entire codebase consistently uses these tokens (e.g., text-primary, text-secondary). This is the only usage of text-orange-500 in the website app, violating the AGENTS.md rule to "Maintain visual consistency with the host application's design system." If the intent was to use an orange color, text-primary should be used instead.

Suggested change
<p className="text-orange-500">
<p className="text-primary">
Open in Devin Review

Was this helpful? React with πŸ‘ or πŸ‘Ž to provide feedback.

Β© 2024-{new Date().getFullYear()} Homeworld Collective
</p>
<div className="flex items-center space-x-4">
Expand Down
20 changes: 16 additions & 4 deletions apps/website/content/obsidian/welcome/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,14 @@ published: true
2. Go to "Community Plugins" β†’ "BRAT"
3. Click "Add Beta Plugin"
![Add plugin](https://firebasestorage.googleapis.com/v0/b/firescript-577a2.appspot.com/o/imgs%2Fapp%2Fdiscourse-graphs%2FdMtstUHPXe.png?alt=media&token=3f139ab9-9802-404d-9554-4a63bac080c5)
4. Enter the repository URL: `https://github.com/blacksmithgu/datacore` and choose "Latest version"
![Add datacore](https://firebasestorage.googleapis.com/v0/b/firescript-577a2.appspot.com/o/imgs%2Fapp%2Fdiscourse-graphs%2FEY3vNGt1Rf.png?alt=media&token=32c60ff1-5272-4cde-8b5f-8f049fb2cf50)
4. Enter the repository URL below and choose "Latest version"

```
https://github.com/blacksmithgu/datacore
```
Comment on lines +26 to +28

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🚩 Markdown list continuity broken by unindented code blocks

The refactored installation instructions place the code blocks (lines 26-28 and 43-45) at the root indentation level rather than indented under list item 4. In CommonMark, this breaks the ordered list into two separate lists (items 1-4, then a new list starting at 5). Visually the numbers still render as 5 and 6 because CommonMark respects the starting number, so the user-facing impact is minimal. However, the list semantics are broken, and some renderers may add extra spacing between the two lists. Indenting the code blocks by 4 spaces (or 3 to match the list prefix width) would keep them as part of list item 4 and maintain a single continuous list.

Open in Devin Review

Was this helpful? React with πŸ‘ or πŸ‘Ž to provide feedback.


![Add datacore](https://firebasestorage.googleapis.com/v0/b/firescript-577a2.appspot.com/o/imgs%2Fapp%2Fdiscourse-graphs%2FEY3vNGt1Rf.png?alt=media&token=32c60ff1-5272-4cde-8b5f-8f049fb2cf50)

5. Check the box for "Enable after installing the plugin"
6. Click "Add plugin"

Expand All @@ -32,7 +38,13 @@ published: true
2. Go to "Community Plugins" β†’ "BRAT"
3. Click "Add Beta Plugin"
![Add plugin](https://firebasestorage.googleapis.com/v0/b/firescript-577a2.appspot.com/o/imgs%2Fapp%2Fdiscourse-graphs%2FdMtstUHPXe.png?alt=media&token=3f139ab9-9802-404d-9554-4a63bac080c5)
4. Enter the repository URL: `https://github.com/DiscourseGraphs/discourse-graph-obsidian` and choose "Latest version"
![Add discourse graph](https://firebasestorage.googleapis.com/v0/b/firescript-577a2.appspot.com/o/imgs%2Fapp%2Fdiscourse-graphs%2FSBCK-2lkcu.png?alt=media&token=0375c828-da4d-43b4-8f2c-e691692cb019)
4. Enter the repository URL below and choose "Latest version"

```
https://github.com/DiscourseGraphs/discourse-graph-obsidian
```

![Add discourse graph](https://firebasestorage.googleapis.com/v0/b/firescript-577a2.appspot.com/o/imgs%2Fapp%2Fdiscourse-graphs%2FSBCK-2lkcu.png?alt=media&token=0375c828-da4d-43b4-8f2c-e691692cb019)

5. Check the box for "Enable after installing the plugin"
6. Click "Add Plugin"
1 change: 1 addition & 0 deletions apps/website/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ process.env.NEXT_PUBLIC_SUPABASE_URL = process.env.SUPABASE_URL;

const withNextra = nextra({
contentDirBasePath: "/docs",
defaultShowCopyCode: true,
});

const nextConfig: NextConfig = {
Expand Down