Skip to content

Commit

Permalink
Merge pull request #85 from tskaigi/feature/update-banner
Browse files Browse the repository at this point in the history
バナー画像差し替え
  • Loading branch information
hoshico authored Mar 1, 2024
2 parents e868001 + 9d00260 commit 6896d7e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion app/call-for-proposals/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Card from '../ui/card';
import Cta from '../ui/cta';
import Container from '../ui/container';
import { NavigateAnchorOnFirstRender } from '../functional/navigate-anchor-on-first-render';
import Image from 'next/image';

const targetIndex = 3;
const pageAnchors = {
Expand Down Expand Up @@ -79,7 +80,7 @@ export default function Page() {
</h2>
<div className="grid md:grid-cols-2 gap-8 my-12">
<div className="m-auto">
<img src="/banner.png" className="object-cover h-48 md:h-56 lg:h-80 rounded-lg " alt="tskaigi logo" />
<img src="/banner.jpg" className="object-cover h-48 md:h-56 lg:h-80 rounded-lg " alt="tskaigi logo" />
</div>
<div>
<p>応募締切: 2024年2月29日(木)</p>
Expand Down
2 changes: 1 addition & 1 deletion app/draft/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function DraftTopPage () {
<>
<NavigateAnchorOnFirstRender />
<div className="bg-white">
<img src="/banner.png" className="object-cover mx-auto h-screen max-h-[30vh] md:max-h-[55vh] lg:max-h-[60vh]" alt="banner image" />
<img src="/banner.jpg" className="object-cover mx-auto h-screen max-h-[30vh] md:max-h-[55vh] lg:max-h-[60vh]" alt="banner image" />
</div>
<Container>
<div className="max-w-4xl my-8 mx-auto pb-20">
Expand Down
4 changes: 2 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ export const metadata: Metadata = {
card: 'summary_large_image',
site: '@tskaigi',
creator: '@tskaigi',
images: ['/banner.png'],
images: ['/banner.jpg'],
},
openGraph: {
title: 'TSKaigi 2024',
url: 'https://tskaigi.org/',
description: 'TSKaigi 2024は、日本最大級のTypeScriptカンファレンスを開催します。',
type: 'website',
images: ['/banner.png'],
images: ['/banner.jpg'],
},
}

Expand Down
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function Home() {
<>
<NavigateAnchorOnFirstRender />
<div className="bg-white">
<img src="/banner.png" className="object-cover mx-auto h-screen max-h-[30vh] md:max-h-[55vh] lg:max-h-[60vh]" alt="banner image" />
<img src="/banner.jpg" className="object-cover mx-auto h-screen max-h-[30vh] md:max-h-[55vh] lg:max-h-[60vh]" alt="banner image" />
</div>
<Container>
<div className="relative isolate overflow-hidden">
Expand Down
Binary file added public/banner.jpg
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 6896d7e

Please sign in to comment.