changed pageimage to be desktop only
This commit is contained in:
parent
a85e00bbd5
commit
0ee647ebae
|
@ -21,7 +21,7 @@ export const defaultContentPageLayout: PageLayout = {
|
||||||
Component.TagList(),
|
Component.TagList(),
|
||||||
],
|
],
|
||||||
left: [
|
left: [
|
||||||
Component.PageImage(),
|
Component.DesktopOnly(Component.PageImage()),
|
||||||
Component.PageTitle(),
|
Component.PageTitle(),
|
||||||
Component.MobileOnly(Component.Spacer()),
|
Component.MobileOnly(Component.Spacer()),
|
||||||
Component.Search(),
|
Component.Search(),
|
||||||
|
|
|
@ -7,7 +7,7 @@ const PageImage: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzCompo
|
||||||
const title = cfg?.pageTitle ?? i18n(cfg.locale).propertyDefaults.title
|
const title = cfg?.pageTitle ?? i18n(cfg.locale).propertyDefaults.title
|
||||||
const baseDir = pathToRoot(fileData.slug!)
|
const baseDir = pathToRoot(fileData.slug!)
|
||||||
return (
|
return (
|
||||||
<a href={baseDir}><img src="https://f003.backblazeb2.com/file/nexie-net/profileimage.webp" style="width:100px; height:100px"/></a>
|
<a href={baseDir}><img width="100px" height="100px" src="https://assets.nexie.net/profileimage.webp" style="width:100px; height:100px"/></a>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue