Skip to content

Commit 97ef51b

Browse files
authored
Merge pull request #6 from Mookiies/play-store-assetes
Update name
2 parents 6981516 + c41768b commit 97ef51b

4 files changed

Lines changed: 18 additions & 18 deletions

File tree

apps/cirquiz/app.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const suffixes = {
99
const s = suffixes[env as keyof typeof suffixes] ?? suffixes.development;
1010

1111
export default ({ config }: ConfigContext): ExpoConfig => ({
12-
name: `Circle Quiz${s.name}`,
12+
name: `Circle Q${s.name}`,
1313
slug: 'cirquiz',
1414
version: '1.0.0',
1515
orientation: 'portrait',

apps/cirquiz/app/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { IconButton } from '../src/components/IconButton';
1717
import { ShineButton } from '../src/components/ShineButton';
1818
import { useGameStore } from '../src/state/gameStore';
1919
import { colors, fontSize, spacing } from '../src/theme';
20-
import CirclequizLogo from '../assets/circlequiz-wordmark.svg';
20+
import CircleQLogo from '../assets/circleq-wordmark.svg';
2121

2222
const DOT_COLORS = [
2323
colors.playerPalette.blue,
@@ -142,7 +142,7 @@ export default function HomeScreen() {
142142
<GradientScreen>
143143
<View style={styles.loadingContainer}>
144144
<View style={styles.logoWrapper}>
145-
<CirclequizLogo />
145+
<CircleQLogo />
146146
</View>
147147
<View style={styles.dotsRow}>
148148
{DOT_COLORS.map((color, i) => (
@@ -166,7 +166,7 @@ export default function HomeScreen() {
166166
</View>
167167
<Animated.View style={[styles.hero, heroStyle]}>
168168
<View style={styles.logoWrapper}>
169-
<CirclequizLogo width={340} height={95} />
169+
<CircleQLogo width={340} height={95} />
170170
</View>
171171
<Text style={styles.subtitle}>{t('home.subtitle', 'Challenge your friends!')}</Text>
172172
</Animated.View>
Lines changed: 14 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)