-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b683d9
commit 52b5003
Showing
6 changed files
with
153 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import { styled } from 'styled-system/jsx'; | ||
import akarinLogo from '../assets/akarin-logo.png'; | ||
import akarinQrCode from '../assets/akarin-qr-code.png'; | ||
import hasuLogo from '../assets/hasu-logo.jpg'; | ||
import hasuQrCode from '../assets/hasu-qr-code.png'; | ||
|
||
export const NAMECARDS = [ | ||
{ | ||
color: '#1F1F5A', | ||
content: { | ||
firstRow: 'Smiley Light Village', | ||
secondRow: '鬼頭明里の里民、タイ支部 🇹🇭', | ||
name: 'ハムP', | ||
nameSubtitle: 'はむぴー/HamP', | ||
message: 'สวัสดีครับ!(サワディーカー)' | ||
}, | ||
logoTop: akarinLogo.src, | ||
logoBottom: | ||
'https://500ddaf7f3cefcd23a892c355a3d13d0.cdnext.stream.ne.jp/images/common/logo.svg', | ||
qrCode: akarinQrCode.src, | ||
Quote: () => { | ||
return ( | ||
<styled.blockquote fontSize="xs" textAlign="center" fontStyle="italic"> | ||
「…推しって<b>“応援する存在”</b>というよりも、 | ||
<br /> | ||
<b>“自分のモチベーションを高める存在”</b>…」 | ||
<br />ー 鬼頭明里 | ||
</styled.blockquote> | ||
); | ||
} | ||
}, | ||
{ | ||
color: '#f8b500', | ||
content: { | ||
firstRow: 'HASUNOSORA JOGAKUIN SCHOOL IDOL CLUB', | ||
secondRow: '蓮ノ空のこと好き好きクラブのみなさん', | ||
name: 'ハムP', | ||
nameSubtitle: 'はむぴー/HamP', | ||
message: 'สวัสดีครับ!(サワディーカー)' | ||
}, | ||
logoTop: hasuLogo.src, | ||
logoMiddle: 'https://www.lovelive-anime.jp/hasunosora/shared/img/member/01_icon.png', | ||
logoBottom: 'https://www.lovelive-anime.jp/hasunosora/shared/img/common/hd_logo.svg', | ||
qrCode: hasuQrCode.src, | ||
Quote: () => { | ||
return ( | ||
<styled.blockquote fontSize="xs" textAlign="center" fontStyle="italic"> | ||
「フラワー」 | ||
<br />ー 楡井希実 | ||
</styled.blockquote> | ||
); | ||
} | ||
} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters