We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05b7cb8 commit e6a3f46Copy full SHA for e6a3f46
website/src/pages/index.jsx
@@ -65,11 +65,24 @@ const TextContainer = styled.div`
65
}
66
`;
67
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
+
77
export default function IndexPage() {
78
const baseUrl = useBaseUrl('/');
79
80
return (
81
<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>
86
<Home HeroExample={HeroExample}>
87
<div style={{position: 'relative'}}>
88
<FeatureImage src={`${baseUrl}images/maps.jpg`} />
0 commit comments