diff --git a/site/config.toml b/site/config.toml
index 784f1d2c..8dec8384 100644
--- a/site/config.toml
+++ b/site/config.toml
@@ -9,11 +9,12 @@ paginate = 10
[params]
GithubURL = "https://github.com/yuzu-emu/yuzu"
+ ProjectName = "yuzu emulator project"
[Languages]
[Languages.en]
- title = "Yuzu"
- tagline = "Experimental Nintendo Switch Emulator"
+ title = "yuzu"
+ tagline = "An experimental Nintendo Switch Emulator"
description = "Yuzu is a highly experimental open-source emulator for the Nintendo Switch."
weight = 1
diff --git a/site/layouts/partials/header_homepage.html b/site/layouts/partials/header_homepage.html
new file mode 100644
index 00000000..193f8794
--- /dev/null
+++ b/site/layouts/partials/header_homepage.html
@@ -0,0 +1,24 @@
+
+
No tweets yet, check back soon!
\ No newline at end of file diff --git a/site/static/images/jumbotron.png b/site/static/images/jumbotron.png new file mode 100644 index 00000000..c5c32e63 Binary files /dev/null and b/site/static/images/jumbotron.png differ diff --git a/site/static/images/rays.svg b/site/static/images/rays.svg new file mode 100644 index 00000000..c8573489 --- /dev/null +++ b/site/static/images/rays.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/site/themes/shared-bulma-theme b/site/themes/shared-bulma-theme index 2bc248dd..d4433a42 160000 --- a/site/themes/shared-bulma-theme +++ b/site/themes/shared-bulma-theme @@ -1 +1 @@ -Subproject commit 2bc248dd03ba59326a4ab451c8c4d78c9672f27b +Subproject commit d4433a4244538e0a72c3c359e7d2db7bed564274 diff --git a/src/scss/shared.scss b/src/scss/shared.scss index e69de29b..02d8e83f 100644 --- a/src/scss/shared.scss +++ b/src/scss/shared.scss @@ -0,0 +1,7 @@ +$navbar-height: 64px; +$body-background-color: #e5e5e5; +$footer-background-color: $body-background-color; + +#homepage-hero { + background-image: url(../images/rays.svg); +} \ No newline at end of file diff --git a/src/scss/style.scss b/src/scss/style.scss index 0576e561..8efee56d 100644 --- a/src/scss/style.scss +++ b/src/scss/style.scss @@ -1,2 +1,3 @@ +@import "./shared.scss"; @import "./yuzu.scss"; @import "./node_modules/bulma/bulma.sass"; \ No newline at end of file diff --git a/src/scss/yuzu.scss b/src/scss/yuzu.scss index 39e8bffe..40d27b4a 100644 --- a/src/scss/yuzu.scss +++ b/src/scss/yuzu.scss @@ -1 +1,2 @@ -$primary: #696969; \ No newline at end of file +$primary: #696969; +$navbar-item-hover-color: purple; \ No newline at end of file