Skip to content

Commit

Permalink
Change Welcome Page Background Color by overwriting default
Browse files Browse the repository at this point in the history
  • Loading branch information
daGscheid committed Jun 26, 2024
1 parent 49a5174 commit dfe0089
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import styles from './index.module.css';
function HomepageHeader() {
const {siteConfig} = useDocusaurusContext();
return (
<header className={clsx('hero hero--primary', styles.heroBanner)}>
<header style={{ backgroundColor: '#336666' }} className={clsx('hero hero--primary', styles.heroBanner)}>
<div className="container">
<Heading as="h1" className="hero__title">
🍄 Stereum
Expand All @@ -28,6 +28,7 @@ function HomepageHeader() {
);
}


export default function Home(): JSX.Element {
const {siteConfig} = useDocusaurusContext();
return (
Expand Down

0 comments on commit dfe0089

Please sign in to comment.