Skip to content

Commit 8ff6918

Browse files
committed
More tweaks
1 parent 4da4596 commit 8ff6918

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

docusaurus.config.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ const config: Config = {
1515
},
1616

1717
// Set the production url of your site here
18-
url: 'https://contextgeneric.dev',
18+
url: 'http://localhost:3000',
19+
// url: 'https://contextgeneric.dev',
1920
// Set the /<baseUrl>/ pathname under which your site is served
2021
// For GitHub pages deployment, it is often '/<projectName>/'
2122
baseUrl: '/',
@@ -37,7 +38,7 @@ const config: Config = {
3738

3839
presets: [
3940
[
40-
'classic',
41+
'@docusaurus/preset-classic',
4142
{
4243
docs: {
4344
sidebarPath: './sidebars.ts',
@@ -64,6 +65,9 @@ const config: Config = {
6465
theme: {
6566
customCss: './src/css/custom.css',
6667
},
68+
pages: {},
69+
sitemap: {},
70+
svgr: {},
6771
} satisfies Preset.Options,
6872
],
6973
],

src/css/custom.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
}
1919

2020
.footer {
21-
--ifm-footer-background-color: #5d4b1e;
21+
--ifm-footer-background-color: #504938;
22+
--ifm-link-color: #FCF7E9;
2223
}
2324

2425
/* For readability concerns, you should choose a lighter palette in dark mode. */

src/pages/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ export default function Home(): ReactNode {
3333
const {siteConfig} = useDocusaurusContext();
3434
return (
3535
<Layout
36-
title={`Hello from ${siteConfig.title}`}
37-
description="Description will go into a meta tag in <head />">
36+
title={`Home`}
37+
description="Context-Generic Programming (CGP) Project Homepage">
3838
<HomepageHeader />
3939
<main>
4040
<HomepageFeatures />

0 commit comments

Comments
 (0)