Skip to content

Commit

Permalink
Merge pull request #506 from Lenapunya/feature/new-logo
Browse files Browse the repository at this point in the history
Logo 2024
  • Loading branch information
martinheidegger authored Nov 22, 2024
2 parents 6c6dcef + d3f6c0a commit b299cde
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions 2024/src/components/Hero.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react"
import styled from "styled-components"
import { Logo2023 } from "./Logo2023"
import { Logo2024 } from "./Logo2024"
import { HeroCountdown } from "./HeroCountdown"

type Props = {
Expand Down Expand Up @@ -52,7 +52,7 @@ export function Hero(props: Props) {

return (
<Box>
<Logo2023 size={270} />
<Logo2024 size={270} />
<TextBox>
<Title lang="en">{title}</Title>
<SubTitle>{subTitle}</SubTitle>
Expand Down
12 changes: 0 additions & 12 deletions 2024/src/components/Logo2023.tsx

This file was deleted.

12 changes: 12 additions & 0 deletions 2024/src/components/Logo2024.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from "react"
import logo2024 from "../images/logo2024.png"

type Props = {
size?: number
}

export const Logo2024 = (props: Props) => {
const size = props.size ?? 125

return <img width={size} height={size} src={logo2024} alt="JSConf JP 2024" />
}
Binary file removed 2024/src/images/logo-2023.png
Binary file not shown.
Binary file added 2024/src/images/logo2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b299cde

Please sign in to comment.