@codecademy/gamut

72.3.072.3.1-alpha.f273fd.0
HeroSection.tsx
+HeroSection.tsxNew file
+9
Index: HeroSection.tsx
===================================================================
--- HeroSection.tsx
+++ HeroSection.tsx
@@ -0,0 +1,9 @@
+import './HeroSection.scss';
+
+import { Box } from '@codecademy/gamut';
+
+export const HeroSection = () => (
+  <Box className="hero-wrapper" style={{ color: '#10162F' }}>
+    <h1>Welcome to the platform</h1>
+  </Box>
+);