Skip to content

Commit

Permalink
fix logo + discord link
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviomoceri committed Oct 23, 2024
1 parent b40d1a1 commit 57ebdb2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion quartz/quartz.layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const sharedPageComponents: SharedLayout = {
links: {
Synonym: "https://synonym.to",
GitHub: "https://github.com/pubky/pubky-knowledge-base",
"Discord Community": "https://discord.com/invite/DxTBJXvJxn",
Discord: "https://discord.com/invite/DxTBJXvJxn",
},
}),
}
Expand Down
8 changes: 4 additions & 4 deletions quartz/quartz/components/PageTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ const PageTitle: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzCompo
const baseDir = pathToRoot(fileData.slug!)
return (
<>
<a style={{ position: "absolute", top: "-100px" }} href="/">
<img src="static/pubky-core-logo.svg" width={209} height={44} />
<a href="/">
<img style={{ margin: 0 }} src="static/pubky-core-logo.svg" width={209} height={44} />
</a>
<h2 class={classNames(displayClass, "page-title")}>
{/** <h2 class={classNames(displayClass, "page-title")}>
<a href={baseDir}>
{title === "Pubky Knowledge Base" && (
<>
Expand All @@ -21,7 +21,7 @@ const PageTitle: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzCompo
</>
)}
</a>
</h2>
</h2> */}
</>
)
}
Expand Down

0 comments on commit 57ebdb2

Please sign in to comment.