diff --git a/public/main.css b/public/main.css index 354d6ff..aa7f88d 100644 --- a/public/main.css +++ b/public/main.css @@ -202,4 +202,60 @@ section.faq { .question-and-answer .text { margin: 5px; line-height: 1.85; +} + +section.team { + margin-top: 220px; +} +.team .team-top { + text-align: center; + display: flex; + flex-wrap: wrap; + justify-content: center; +} +.team .team-top .text { + width: 24%; + margin: 0; + margin-top: 6px; +} +.team .team-top .title { + width: 100%; +} + +.team-cards { + display: grid; + grid-template-columns: repeat(6, 1fr); + grid-gap: 20px; + margin-top: 80px; + justify-items: center; +} +.card { + width: calc(100% - 54px); + padding: 18px 27px; + display: grid; + grid-template-columns: 110px 1fr; + grid-gap: 20px; + background: #16192D; + grid-column: span 2; + border-radius: 10px; + align-items: center; +} +.card .pfp { + width: 100%; + border-radius: 10px; + background: white; +} +.card .text, .card .title { + margin: 0; +} +.card .text { + color: var(--text-secondary); +} + + +footer { + text-align: center; + color: var(--text-secondary); + padding: 20px 0; + margin-top: 100px; } \ No newline at end of file diff --git a/views/home.handlebars b/views/home.handlebars index 68e6eb0..d283a60 100644 --- a/views/home.handlebars +++ b/views/home.handlebars @@ -1,11 +1,12 @@ {{!-- this is temp --}} - +{{!-- --}} {{!-- This is not --}}
+
+

{{ locale.hero.subtitle }}

@@ -46,6 +48,7 @@
+
@@ -56,12 +59,13 @@
-

{{ locale.section2.right.title }}

+

{{ locale.section2.right.title }}

{{#each locale.section2.right.paragraphs}}

{{ this }}

{{/each}}
+
@@ -79,6 +83,31 @@ {{/each}}
+ {{!-- Tmp! --}}
+ +
+
+

{{ locale.credits.title }}

+

{{ locale.credits.text }}

+
+
+ {{#each locale.credits.people}} +
+
+ +
+
+

{{ name }}

+

{{ caption }}

+
+
+ {{/each}} +
+
+ + + +
\ No newline at end of file diff --git a/web-server/routers/home.js b/web-server/routers/home.js index fad7c43..db17ce1 100644 --- a/web-server/routers/home.js +++ b/web-server/routers/home.js @@ -72,6 +72,66 @@ router.get("/", (req, res) => { "answer": "No. The only thing you need to run the patcher is a way to access the Homebrew Launcher, whether it's the browser exploit, Haxchi or Coldboot Haxchi" } ] + }, + credits: { + title: "The team", + text: "Our amazing team has spent countless hours helping out on making Pretendo better.", + people: [ + { + "name": "Jonathan Barrow (RedDucks)", + "caption": "Project owner and lead developer", + "picture": "https://github.com/redduckss.png", + "github": "https://github.com/RedDuckss" + }, + { + "name": "Jemma (CaramelKat)", + "caption": "Miiverse research and development", + "picture": "https://github.com/caramelkat.png", + "github": "https://github.com/CaramelKat" + }, + { + "name": "superwhiskers", + "caption": "crunch library development", + "picture": "https://github.com/superwhiskers.png", + "github": "https://github.com/superwhiskers" + }, + { + "name": "SuperMarioDaBom", + "caption": "Console and other system research", + "picture": "https://github.com/supermariodabom.png", + "github": "https://github.com/SuperMarioDaBom" + }, + { + "name": "Rambo6Glaz", + "caption": "Network installer and console research", + "picture": "https://github.com/NexoDevelopment.png", + "github": "https://github.com/NexoDevelopment" + }, + // { + // "name": "mrjvs", + // "caption": "Web development and early eShop research", + // "picture": "https://github.com/mrjvs.png", + // "github": "https://github.com/mrjvs" + // }, + { + "name": "Benjamin Moss (kxpler442b)", + "caption": "Web development", + "picture": "https://github.com/kxpler442b.png", + "github": "https://github.com/kxpler442b" + }, + { + "name": "Jip Fr", + "caption": "Web development", + "picture": "https://github.com/jipfr.png", + "github": "https://github.com/jipfr" + }, + { + "name": "Kinnay", + "caption": "None of this would be possible without the research and help done by Kinnay on PRUDP and nex", + "picture": "https://cdn.discordapp.com/avatars/186572995848830987/b55c0d4e7bfd792edf0689f83a25d8ea.png?size=2048", + "github": "https://github.com/Kinnay" + } + ] } }