Skip to content

Commit

Permalink
スライドの差し替えと、 配置が綺麗になるように微調整
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaku-Kunimi committed Nov 21, 2024
1 parent df89adc commit 1334062
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .env.development
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
NEXT_PUBLIC_API_BASE_URL=http://localhost:8888/
# NEXT_PUBLIC_API_BASE_URL=http://localhost:8888/
NEXT_PUBLIC_API_BASE_URL=https://event.cloudnativedays.jp/
NEXT_PUBLIC_EVENT_ABBR=cndw2024
# NEXT_PUBLIC_DEBUG='true'
# BGM の長さを音はめする 長さ全部: 192.03
Expand Down
Binary file added public/cndw2024/background.png
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 public/cndw2024/info1.png
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 public/cndw2024/info2.png
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 public/cndw2024/info3.png
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 public/cndw2024/info4.png
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 public/cndw2024/info5.png
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 public/cndw2024/info6.png
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 public/cndw2024/info7.png
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 public/cndw2024/info8.png
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 public/cndw2024/info9.png
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 public/cndw2024/trademark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 12 additions & 12 deletions src/components/Page3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ import Image from 'next/image'
type Props = { view: Optional<TalkView> }

const images = [
'/pek2024/info1.png',
'/pek2024/info2.png',
'/pek2024/info3.png',
'/pek2024/info4.png',
'/pek2024/info5.png',
'/pek2024/info6.png',
'/pek2024/info7.png',
// '/cnds2024/info8.png',
// '/cnds2024/info9.png',
// '/cnds2024/info10.png',
'/cndw2024/info1.png',
'/cndw2024/info2.png',
'/cndw2024/info3.png',
'/cndw2024/info4.png',
'/cndw2024/info5.png',
'/cndw2024/info6.png',
'/cndw2024/info7.png',
'/cndw2024/info8.png',
'/cndw2024/info9.png',
// '/cndw2024/info10.png',
]

export default function Page({ view }: Props) {
Expand All @@ -36,8 +36,8 @@ export default function Page({ view }: Props) {
<Image
src={images[count]}
alt={'information'}
width={1920}
height={1080}
width={1671}
height={940}
className="m-auto"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/break-dk/talks/[talkId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function Pages() {
)}
<AudioPlayer src={audioSrc} shouldPlay={shouldPlayAudio} />
<AvatarPreLoader view={view}></AvatarPreLoader>
<div className="w-[1920px] h-[1080px] bg-[url('/cnds2024/background.png')]">
<div className="w-[1920px] h-[1080px] bg-[url('/cndw2024/background.png')]">
{pages[current]}
</div>
<div className="w-[1280px] h-[300px] bg-black relative"></div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/break/talks/[talkId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function Pages() {
)}
<AudioPlayer src={audioSrc} shouldPlay={shouldPlayAudio} />
<AvatarPreLoader view={view}></AvatarPreLoader>
<div className="w-[1920px] h-[1080px] bg-[url('/cnds2024/background.png')]">
<div className="w-[1920px] h-[1080px] bg-[url('/cndw2024/background.png')]">
{pages[current]}
</div>
<div className="w-[1280px] h-[300px] bg-black relative"></div>
Expand Down

0 comments on commit 1334062

Please sign in to comment.