@@ -3,20 +3,20 @@ import type {Config} from '@docusaurus/types';
33import type * as Preset from '@docusaurus/preset-classic' ;
44
55const config : Config = {
6- title : 'My Site ' ,
7- tagline : 'Dinosaurs are cool ' ,
6+ title : 'codeuctivity ' ,
7+ tagline : 'Turning Coffee into Code: A Journey of Joyful Creation ' ,
88 favicon : 'img/favicon.ico' ,
99
1010 // Set the production url of your site here
11- url : 'https://your-docusaurus-site.example.com ' ,
11+ url : 'https://codeuctivity.github.io ' ,
1212 // Set the /<baseUrl>/ pathname under which your site is served
1313 // For GitHub pages deployment, it is often '/<projectName>/'
1414 baseUrl : '/' ,
1515
1616 // GitHub pages deployment config.
1717 // If you aren't using GitHub pages, you don't need these.
18- organizationName : 'facebook ' , // Usually your GitHub org/user name.
19- projectName : 'docusaurus ' , // Usually your repo name.
18+ organizationName : 'codeuctivity ' , // Usually your GitHub org/user name.
19+ projectName : 'codeuctivity.github.io ' , // Usually your repo name.
2020
2121 onBrokenLinks : 'throw' ,
2222 onBrokenMarkdownLinks : 'warn' ,
@@ -33,20 +33,20 @@ const config: Config = {
3333 [
3434 'classic' ,
3535 {
36- docs : {
37- sidebarPath : './sidebars.ts' ,
38- // Please change this to your repo.
39- // Remove this to remove the "edit this page" links.
40- editUrl :
41- 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/' ,
42- } ,
43- blog : {
44- showReadingTime : true ,
45- // Please change this to your repo.
46- // Remove this to remove the "edit this page" links.
47- editUrl :
48- 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/' ,
49- } ,
36+ // docs: {
37+ // sidebarPath: './sidebars.ts',
38+ // // Please change this to your repo.
39+ // // Remove this to remove the "edit this page" links.
40+ // editUrl:
41+ // 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
42+ // },
43+ // blog: {
44+ // showReadingTime: true,
45+ // // Please change this to your repo.
46+ // // Remove this to remove the "edit this page" links.
47+ // editUrl:
48+ // 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
49+ // },
5050 theme : {
5151 customCss : './src/css/custom.css' ,
5252 } ,
@@ -57,75 +57,83 @@ const config: Config = {
5757 themeConfig : {
5858 // Replace with your project's social card
5959 image : 'img/docusaurus-social-card.jpg' ,
60+ colorMode : {
61+ defaultMode : 'dark' ,
62+ disableSwitch : false ,
63+ respectPrefersColorScheme : true ,
64+ } ,
6065 navbar : {
61- title : 'My Site ' ,
66+ title : 'codeuctivity ' ,
6267 logo : {
63- alt : 'My Site Logo' ,
68+ alt : 'codeuctivity Logo' ,
6469 src : 'img/logo.svg' ,
6570 } ,
6671 items : [
72+ // {
73+ // type: 'docSidebar',
74+ // sidebarId: 'tutorialSidebar',
75+ // position: 'left',
76+ // label: 'Tutorial',
77+ // },
78+ // {to: '/blog', label: 'Blog', position: 'left'},
6779 {
68- type : 'docSidebar' ,
69- sidebarId : 'tutorialSidebar' ,
70- position : 'left' ,
71- label : 'Tutorial' ,
72- } ,
73- { to : '/blog' , label : 'Blog' , position : 'left' } ,
74- {
75- href : 'https://github.com/facebook/docusaurus' ,
80+ href : 'https://github.com/codeuctivity' ,
7681 label : 'GitHub' ,
7782 position : 'right' ,
7883 } ,
7984 ] ,
8085 } ,
8186 footer : {
82- style : 'dark' ,
8387 links : [
88+ // {
89+ // title: 'Docs',
90+ // items: [
91+ // {
92+ // label: 'Tutorial',
93+ // to: '/docs/intro',
94+ // },
95+ // ],
96+ // },
8497 {
85- title : 'Docs' ,
86- items : [
87- {
88- label : 'Tutorial' ,
89- to : '/docs/intro' ,
90- } ,
91- ] ,
92- } ,
93- {
94- title : 'Community' ,
98+ title : 'Things' ,
9599 items : [
96- {
97- label : 'Stack Overflow' ,
98- href : 'https://stackoverflow.com/questions/tagged/docusaurus' ,
99- } ,
100- {
101- label : 'Discord' ,
102- href : 'https://discordapp.com/invite/docusaurus' ,
103- } ,
104- {
105- label : 'Twitter' ,
106- href : 'https://twitter.com/docusaurus' ,
100+ {
101+ label : 'Nuget' ,
102+ href : 'https://www.nuget.org/packages?q=Codeuctivity' ,
107103 } ,
104+ // {
105+ // label: 'Stack Overflow',
106+ // href: 'https://stackoverflow.com/questions/tagged/docusaurus',
107+ // },
108+ // {
109+ // label: 'Discord',
110+ // href: 'https://discordapp.com/invite/docusaurus',
111+ // },
112+ // {
113+ // label: 'Twitter',
114+ // href: 'https://twitter.com/docusaurus',
115+ // },
108116 ] ,
109117 } ,
110118 {
111- title : 'More' ,
119+ title : 'More Things ' ,
112120 items : [
113- {
114- label : 'Blog' ,
115- to : '/blog' ,
116- } ,
121+ // {
122+ // label: 'Blog',
123+ // to: '/blog',
124+ // },
117125 {
118126 label : 'GitHub' ,
119- href : 'https://github.com/facebook/docusaurus ' ,
127+ href : 'https://github.com/codeuctivity ' ,
120128 } ,
121129 ] ,
122130 } ,
123131 ] ,
124- copyright : `Copyright © ${ new Date ( ) . getFullYear ( ) } My Project, Inc. Built with Docusaurus. ` ,
132+ copyright : `Copyright © ${ new Date ( ) . getFullYear ( ) } codeuctivity ` ,
125133 } ,
126134 prism : {
127- theme : prismThemes . github ,
128135 darkTheme : prismThemes . dracula ,
136+ theme : prismThemes . github ,
129137 } ,
130138 } satisfies Preset . ThemeConfig ,
131139} ;
0 commit comments