Skip to content

Kun/team section #188

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/assets/photos/teams/emily_rose.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/assets/photos/teams/joe_clack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/assets/photos/teams/maks_nowak.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/assets/photos/teams/oscar_ryley.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions client/src/app/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,20 @@ import { Gallery } from "@/components/gallery"
import { Guilds } from "@/components/guilds"
import { Splash } from "@/components/splash"
import { Sponsors } from "@/components/sponsors"
import { Teams } from "@/components/teams"

import { AnimatedMountain } from "./animated-mountain";

export default function HomePage() {
return (
<main>


<section id="splash">
<Splash />
</section>


<section id="about" className="ellipse">
<About />
</section>
Expand All @@ -44,6 +48,10 @@ export default function HomePage() {
<Gallery />
</section>

<section id="teams">
<Teams />
</section>

<section id="end">
<End />
</section>
Expand Down
3 changes: 3 additions & 0 deletions client/src/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ export function Navbar() {
<li>
<a href="#gallery">Gallery</a>
</li>
<li>
<a href="#teams">Teams</a>
</li>
<li className="hidden">
<a href="#end">Team</a>
</li>
Expand Down
282 changes: 282 additions & 0 deletions client/src/components/teams.tsx

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions client/src/styles/background.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ section#faqs {
width: 100%;
}
}

section#sponsors {
background: linear-gradient(180deg, #306379, #175a82 50%, #196798);
}
Expand All @@ -59,6 +58,10 @@ section#gallery {
background: linear-gradient(180deg, #3983ab, #73afc5);
}

footer {
background: #73afc5;
section#teams {
background: linear-gradient(180deg, #73afc5, #89c4d9);
}

footer {
background: #89c4d9;
}