-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.jsx
135 lines (135 loc) · 3.66 KB
/
theme.config.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
const themeConfig = {
CardType:{
post:"two"
},
settings: {
title: "Home Page",
description:
"JavaScript || Reactjs || Nextjs || Python || Rust || Biotechnology || Bioinformatic || Front-end Developer || Author",
SiteURL: "https://officialrajdeepsingh.dev/",
defaultSEO: {
title: "Home Page",
titleTemplate: "%s | Rajdeep Singh",
twitter: {
handle: "@Official_R_deep",
site: "@site",
cardType: "summary_large_image",
},
},
},
DateFormat: "MMM DD, YYYY",
bannerMessage:
"Start your markdown portfolio blog with nextjs, nextra, tailwind CSS, and Shadcn UI using <a style='margin: 0px 4px;text-decoration:underline;' target='_blank' href='https://www.npmjs.com/package/section-blog-theme'> the section blog theme. </a>",
SocialLinks: [
{
name: "twitter",
url: "https://twitter.com/Official_R_deep",
},
{
name: "github",
url: "https://github.com/officialrajdeepsingh/officialrajdeepsingh.dev",
},
{
name: "linkedin",
url: "https://www.linkedin.com/in/officalrajdeepsingh",
},
{
name: "medium",
url: "https://officialrajdeepsingh.medium.com"
},
{
name : "linktree",
url :"https://linktr.ee/officialrajdeepsingh"
},
],
Logo: {
logo: "Rajdeep Singh.",
target: "_self",
},
PrimaryNavigation: [
{
href: "/",
title: "Home",
},
{
href: "/posts",
title: "Blog",
},
{
title: "Tags",
subNav: true,
subNavigation: [
{
title: "Ghost CMS",
href: "/tags/ghost",
description: "Check out my personal portfolio blog website.",
},
{
title: "Linux",
href: "/tags/linux",
description: "Section blog theme is nextra based theme.",
},
{
title: "Raspberry Pi",
href: "/tags/raspberry",
description: "Section blog theme is nextra based theme.",
},
],
},
{
title: "Projects",
subNav: true,
subNavigation: [
{
title: "Awesome Nextjs",
href: "https://github.com/officialrajdeepsingh/awesome-nextjs",
description:
"A curated list of awesome Nextjs-based libraries that help build small and large-scale applications with next.js.",
},
{
title: "Section Blog Theme",
href: "https://github.com/frontendweb3/section-blog-theme",
description: "Section blog theme is nextra based theme.",
},
{
title: "Next.js + Ghost CMS API",
href: "https://github.com/officialrajdeepsingh/nextjsghostcms",
description: "Combine the Nextjs and Ghost CMS API to build a static blog website.",
},
{
title: "Blogify",
href: "https://github.com/frontendweb3/blogify",
description: "Blogify is an open-source nextjs blog template design with tailwind CSS.",
},
{
title: "Nerd Fonts Installer",
href: "https://github.com/officialrajdeepsingh/nerd-fonts-installer",
description: "Nerd fonts installer bash script to install the any nerd font in Debian based distro.",
}
],
},
{
href: "/pages/manga-and-anime",
title: "Manga List",
},
{
href: "/pages/future",
title: "Future Plan",
},
],
SecondaryNavigation: [
{
href: "/pages/disclaimer",
title: "Disclaimer",
},
{
href: "/pages/privacy-policy",
title: "Privacy Policy",
},
{
href: "/pages/contact",
title: "Contact",
},
],
};
export default themeConfig;