Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
55a5ae8
chore: update deps
tobias-hay Jul 16, 2025
470e7af
feat(embed): base embed & author
tobias-hay Jul 16, 2025
595b79c
chore(deps): resolve biome errors
tobias-hay Jul 16, 2025
61c7e74
chore(deps): fix linting issues
tobias-hay Jul 16, 2025
2003b45
fix(base/mentions): add missing mention css classes
tobias-hay Jul 16, 2025
17d09b2
feat(embed): title & desc items
tobias-hay Jul 16, 2025
4b6508e
feat(embed): add fields
tobias-hay Jul 17, 2025
4e9c273
feat(embed): thumbnail image
tobias-hay Jul 17, 2025
37a87ba
chore(embed): add a biome ignore
tobias-hay Jul 17, 2025
f889dcc
feat(embed): footer
tobias-hay Jul 17, 2025
508514e
feat(embed): embed images
tobias-hay Jul 19, 2025
1deeb04
Merge branch 'main' into feat/embeds
tobias-hay Jul 19, 2025
04058d8
fix(post-merg): fix post merge conflicts
tobias-hay Jul 19, 2025
d04548a
style: format & lint code
tobias-hay Jul 19, 2025
262dbe7
fix(embed): text color is now discord controlled
tobias-hay Jul 19, 2025
941fba2
fix(embed/images): make image cover whole area
tobias-hay Jul 19, 2025
d00bb0e
style(emebed/image): format
tobias-hay Jul 19, 2025
b63a10d
chore(reg): update base reg styles
tobias-hay Jul 19, 2025
78d26c7
feat(embed/reg): add discord embeds to the registry
tobias-hay Jul 19, 2025
9ecfc46
style: apply formating
tobias-hay Jul 19, 2025
f990932
chore(embed): remove extra comment
tobias-hay Jul 19, 2025
85575e4
fix: proper rounding for images
mezotv Jul 20, 2025
4fc3532
style: fix lint issues
mezotv Jul 20, 2025
1b403b1
fix(embed): resolve copilots suggestions
tobias-hay Jul 20, 2025
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
9 changes: 9 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.biome": "explicit",
"source.organizeImports.biome": "explicit"
},
"files.associations": {
"*.css": "tailwindcss"
}
}
2 changes: 1 addition & 1 deletion app/(home)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { ReactNode } from "react";
import { HomeLayout } from "fumadocs-ui/layouts/home";
import type { ReactNode } from "react";
import { baseOptions } from "@/app/layout.config";

export default function Layout({ children }: { children: ReactNode }) {
Expand Down
Loading