Skip to content

Commit 8d1ba3f

Browse files
Configured the Layout and Config
1 parent a1f7876 commit 8d1ba3f

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

quartz.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import * as Plugin from "./quartz/plugins"
99
const config: QuartzConfig = {
1010
configuration: {
1111
pageTitle: "🛠️ Java Design Patterns",
12-
pageTitleSuffix: " - Design Pattern",
12+
pageTitleSuffix: "",
1313
enableSPA: true,
1414
enablePopovers: false,
1515
analytics: {

quartz.layout.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const sharedPageComponents: SharedLayout = {
99
footer: Component.Footer({
1010
links: {
1111
GitHub: "https://prathameshdhande22.github.io/Java-Tutorial/",
12-
LinkedIn:"https://www.linkedin.com/in/prathamesh-dhande-3a039721a/"
12+
LinkedIn: "https://www.linkedin.com/in/prathamesh-dhande-3a039721a/"
1313
// TODO: Later Add the Notes Links here
1414
},
1515
}),
@@ -28,9 +28,11 @@ export const defaultContentPageLayout: PageLayout = {
2828
Component.MobileOnly(Component.Spacer()),
2929
Component.Search(),
3030
Component.Darkmode(),
31-
Component.Explorer({
32-
title:"Pattern"
33-
}),
31+
Component.DesktopOnly(
32+
Component.Explorer({
33+
title: "Pattern"
34+
}),
35+
)
3436
],
3537
right: [
3638
// Component.Graph(),

0 commit comments

Comments
 (0)