Skip to content

Commit

Permalink
[feat]: 후원사 - 엘리스 에셋 추가 (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
youngminss authored May 7, 2024
2 parents 57eee5d + 0a739c8 commit c2bdde5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Set to true to add reviewers to pull requests
addReviewers: true
addReviewers: false

# Set to true to add assignees to pull requests
addAssignees: author
Expand Down
14 changes: 7 additions & 7 deletions components/home/SponsorSection/index.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import type { ReactElement } from 'react';
import styled from 'styled-components';
import { Button, Image } from 'components/common';
import { SectionTitle } from 'components/home';
import SectionTemplate from '../SectionTemplate';
import media from 'styles/media';
import { SPONSOR_DATA } from 'database/home';
import Yapp from 'constants/yapp';
import { SPONSOR_DATA } from 'database/home';
import type { ReactElement } from 'react';
import styled from 'styled-components';
import media from 'styles/media';
import SectionTemplate from '../SectionTemplate';

function SponsorSection(): ReactElement {
return (
Expand All @@ -15,9 +15,9 @@ function SponsorSection(): ReactElement {
운영을 위한 다양한 후원사를 기다리고 있습니다.
</span>
<SponsorList>
{SPONSOR_DATA.map(({ image }, index) => (
{SPONSOR_DATA.map(({ image, alt }, index) => (
<Sponsor key={index}>
<Image src={image} alt="sponsor image" />
<Image src={image} alt={alt} priority />
</Sponsor>
))}
</SponsorList>
Expand Down
6 changes: 6 additions & 0 deletions database/home.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,14 @@ export const NEWS_DATA = [
export const SPONSOR_DATA = [
{
image: '/assets/sponsors/sponsor_ncp.png',
alt: 'sponsor ncp',
},
{
image: '/assets/sponsors/sponsor_greeting.png',
alt: 'sponsor greeting',
},
{
image: '/assets/sponsors/sponsor_elice.png',
alt: 'sponsor elice',
},
];
Binary file modified public/assets/images/24th/banner-pc.webp
Binary file not shown.
Binary file removed public/assets/sponsors/sponsor_catch.png
Binary file not shown.
Binary file added public/assets/sponsors/sponsor_elice.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 c2bdde5

Please sign in to comment.