Skip to content

Commit e6a3f46

Browse files
committed
Add call to action banner
1 parent 05b7cb8 commit e6a3f46

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

website/src/pages/index.jsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,24 @@ const TextContainer = styled.div`
6565
}
6666
`;
6767

68+
const EventBanner = styled.div`
69+
position: sticky;
70+
width: 100%;
71+
top: var(--ifm-navbar-height);
72+
background: #a01000;
73+
padding: 20px;
74+
color: #fff !important;
75+
`;
76+
6877
export default function IndexPage() {
6978
const baseUrl = useBaseUrl('/');
7079

7180
return (
7281
<Layout title="Home" description="deck.gl">
82+
<EventBanner >
83+
Open Visualization Collaborators Summit 2025: October 8-9 @ Seattle
84+
<a href="https://deck.gl/events/seattle-summit-2025/">sign up</a>
85+
</EventBanner>
7386
<Home HeroExample={HeroExample}>
7487
<div style={{position: 'relative'}}>
7588
<FeatureImage src={`${baseUrl}images/maps.jpg`} />

0 commit comments

Comments
 (0)