Skip to content

Commit 8fe7ac6

Browse files
committed
feat: apply new sponsor logos
1 parent 62600ea commit 8fe7ac6

File tree

7 files changed

+39
-13
lines changed

7 files changed

+39
-13
lines changed
131 KB
Loading
22 Bytes
Loading

public/static/images/ci_jpub.webp

30.6 KB
Loading

public/static/images/og_image.png

59.3 KB
Loading

src/app/_components/Sponsor/index.tsx

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ const Sponsor = ({ className, ...props }: SponsorProps) => {
1414
<a href="https://soft.hufs.ac.kr/" target="_blank">
1515
<Image
1616
className={styles.logo}
17-
src="/static/images/ci_ai_education_center.webp"
18-
alt="AI Education Center @ HUFS"
17+
src="/static/images/ci_ai_education_institute.webp"
18+
alt="AI Education Institute @ HUFS"
1919
width={230.4}
2020
height={25.2}
2121
draggable={false}
@@ -37,16 +37,28 @@ const Sponsor = ({ className, ...props }: SponsorProps) => {
3737
</div>
3838
<div className={styles.organization}>
3939
<p className={styles.title}>Our Sponsors</p>
40-
<a href="https://www.easyspub.co.kr/" target="_blank">
41-
<Image
42-
className={styles.logo}
43-
src="/static/images/ci_easypub.webp"
44-
alt="EasysPublishing Co., Ltd."
45-
width={230.4}
46-
height={25.2}
47-
draggable={false}
48-
/>
49-
</a>
40+
<div className={styles.sponsorRow}>
41+
<a href="http://jpub.kr/" target="_blank">
42+
<Image
43+
className={styles.logo}
44+
src="/static/images/ci_jpub.webp"
45+
alt="Jpub Co., Ltd."
46+
width={83.78}
47+
height={25.2}
48+
draggable={false}
49+
/>
50+
</a>
51+
<a href="https://www.easyspub.co.kr/" target="_blank">
52+
<Image
53+
className={styles.logo}
54+
src="/static/images/ci_easypub.webp"
55+
alt="EasysPublishing Co., Ltd."
56+
width={165.41}
57+
height={25.2}
58+
draggable={false}
59+
/>
60+
</a>
61+
</div>
5062
</div>
5163
</section>
5264
);

src/app/_components/Sponsor/styles.css.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ globalStyle(`${organization} > a:hover`, {
2929
});
3030

3131
export const logo = style({
32-
width: rem(230.4),
32+
width: 'auto',
3333
height: rem(25.2),
3434
userSelect: 'none',
3535
});
@@ -43,3 +43,10 @@ export const title = style({
4343
textAlign: 'center',
4444
userSelect: 'none',
4545
});
46+
47+
export const sponsorRow = style({
48+
display: 'flex',
49+
justifyContent: 'center',
50+
alignItems: 'center',
51+
gap: rem(4),
52+
});

src/app/festival/[id]/page.css.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,10 @@ globalStyle(`${article} td`, {
103103
border: `1px solid rgba(255, 255, 255, 0.4)`,
104104
padding: rem(8),
105105
});
106+
107+
globalStyle(`${article} code`, {
108+
border: `1px solid rgba(255, 255, 255, 0.2)`,
109+
padding: `${rem(2)} ${rem(4)}`,
110+
borderRadius: rem(4),
111+
backgroundColor: 'rgba(220, 220, 220, 0.1)',
112+
});

0 commit comments

Comments
 (0)