implemented custom footer

This commit is contained in:
Ulysia 2024-10-14 08:26:05 +02:00
parent ecaac79943
commit fdb18b9fc8
2 changed files with 5 additions and 1 deletions

View file

@ -5,7 +5,7 @@ import * as Component from "./quartz/components"
export const sharedPageComponents: SharedLayout = {
head: Component.Head(),
header: [Component.DesktopOnly(Component.PageImage()), Component.Homebar()],
footer: Component.Footer({
footer: Component.CustomFooter({
links: {
"Main social profile": "https://derg.social/@ulysia",
},

View file

@ -21,6 +21,8 @@ import RecentNotes from "./RecentNotes"
import Breadcrumbs from "./Breadcrumbs"
import PageImage from "./PageImage"
import Homebar from "./Homebar"
import Footer_links from "./Footer_links"
import CustomFooter from "./CustomFooter"
export {
ArticleTitle,
@ -46,4 +48,6 @@ export {
Breadcrumbs,
PageImage,
Homebar,
Footer_links,
CustomFooter,
}