Skip to content

Commit

Permalink
Merge pull request #101 from olipra/main
Browse files Browse the repository at this point in the history
New logo placeholder
  • Loading branch information
NOCanoa authored Dec 11, 2024
2 parents a5df3d8 + 579485c commit 929df7a
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions quartz/components/Head.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ export default (() => {
const path = url.pathname as FullSlug
const baseDir = fileData.slug === "404" ? path : pathToRoot(fileData.slug!)

const iconPath = joinSegments(baseDir, "static/icon.svg")
const ogImagePath = `https://${cfg.baseUrl}/static/og-image.svg`
const iconPath = joinSegments(baseDir, "static/icon.png")
const ogImagePath = `https://${cfg.baseUrl}/static/og-image.png`

return (
<head>
Expand Down
2 changes: 1 addition & 1 deletion quartz/components/PageTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { i18n } from "../i18n"
const PageTitle: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzComponentProps) => {
const title = cfg?.pageTitle ?? i18n(cfg.locale).propertyDefaults.title
const baseDir = pathToRoot(fileData.slug!)
const iconPath = joinSegments(baseDir, "static/icon.svg")
const iconPath = joinSegments(baseDir, "static/icon.png")
return (
<h2 class={classNames(displayClass, "page-title")}>
<a href={baseDir}>
Expand Down
Binary file added quartz/static/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion quartz/static/icon.svg

This file was deleted.

Binary file added quartz/static/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion quartz/static/og-image.svg

This file was deleted.

0 comments on commit 929df7a

Please sign in to comment.