diff --git a/website/public/assets/movie_dither.gif b/website/public/assets/movie_dither.gif new file mode 100644 index 0000000..427359b Binary files /dev/null and b/website/public/assets/movie_dither.gif differ diff --git a/website/public/assets/movie_lang.gif b/website/public/assets/movie_lang.gif new file mode 100644 index 0000000..55772e9 Binary files /dev/null and b/website/public/assets/movie_lang.gif differ diff --git a/website/public/assets/movie_playback.gif b/website/public/assets/movie_playback.gif new file mode 100644 index 0000000..23a99af Binary files /dev/null and b/website/public/assets/movie_playback.gif differ diff --git a/website/src/components/Button.astro b/website/src/components/Button.astro new file mode 100644 index 0000000..4adec40 --- /dev/null +++ b/website/src/components/Button.astro @@ -0,0 +1,45 @@ +--- +const { href, type } = Astro.props +--- +
+ + + +
+ + \ No newline at end of file diff --git a/website/src/components/Hero.astro b/website/src/components/Hero.astro index 47e1858..1b5a81a 100644 --- a/website/src/components/Hero.astro +++ b/website/src/components/Hero.astro @@ -3,6 +3,7 @@ import { Icon } from 'astro-icon'; import Nav from '../components/Nav.astro'; import Player from '../components/Player.astro'; +import Button from '../components/Button.astro'; ---
@@ -18,8 +19,7 @@ import Player from '../components/Player.astro';
-

Coming Soon

- +
@@ -35,17 +35,8 @@ import Player from '../components/Player.astro'; z-index: 0; height: 100vh; - // clamp height min-height: 760px; max-height: 1200px; - - background-position: center top; - background-repeat: repeat; - background-image: url('data:image/svg+xml;charset=utf8,\ - \ - \ - \ - '); } .Hero__head { @@ -57,6 +48,7 @@ import Player from '../components/Player.astro'; } .Hero__wrap { + // margin-top: -$navbar-height; display: grid; align-items: center; grid-template-columns: 1fr; @@ -80,15 +72,18 @@ import Player from '../components/Player.astro'; @include breakpoint-tablet { // grid-column: 1; margin: 0 auto; - max-width: 512px; + max-width: 480px; + margin-top: 1.5rem; } } .Hero__tagline { color: $color-text-alt; - font-weight: normal; - font-size: 1.2rem; - margin-bottom: .5rem; + // font-weight: bold; + font-weight: 600; + font-size: 1.25rem; + margin-top: .75rem; + margin-bottom: .75rem; max-width: 25ch; } diff --git a/website/src/components/Nav.astro b/website/src/components/Nav.astro index 0098d0c..81ff8ab 100644 --- a/website/src/components/Nav.astro +++ b/website/src/components/Nav.astro @@ -1,19 +1,33 @@ +--- +import Button from './Button.astro' +---