Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions app/product/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default function ProductDetailScreen() {
<Text style={styles.badgeText}>{product.badge}</Text>
</View>
)}
<Emoji emoji={product.emoji} size={80} />
<Text style={styles.productImageText}>do this</Text>
</View>

{/* Product Info */}
Expand All @@ -94,7 +94,7 @@ export default function ProductDetailScreen() {
</View>
<View style={styles.detailRow}>
<Text style={styles.detailLabel}>Condition</Text>
<Text style={styles.detailValue}>Preserved</Text>
<Text style={styles.detailValue}>and that</Text>
</View>
<View style={styles.detailRow}>
<Text style={styles.detailLabel}>Origin</Text>
Expand Down Expand Up @@ -218,8 +218,10 @@ const styles = StyleSheet.create({
fontFamily: Fonts.body,
color: Colors.inkBlack,
},
productEmoji: {
fontSize: 80,
productImageText: {
fontFamily: Fonts.display,
fontSize: 24,
color: Colors.inkBlack,
},
infoSection: {
padding: Spacing.m,
Expand Down
2 changes: 1 addition & 1 deletion constants/products.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const allProducts: Product[] = [
{ id: 1, name: 'Hercules Beetle', price: 45.00, emoji: '🪲', badge: 'RARE', category: 'Beetles', description: 'The mightiest of all beetles. Known for its incredible horn and strength. A true collector\'s specimen.' },
{ id: 2, name: 'Blue Morpho', price: 28.50, emoji: '🦋', category: 'Butterflies', description: 'Iridescent blue wings that shimmer in the light. One of the most beautiful butterflies in the world.' },
{ id: 3, name: 'Orchid Mantis', price: 62.00, emoji: '🦗', category: 'Crawlers', description: 'Masters of disguise. This stunning mantis mimics orchid petals to lure prey. Premium specimen.' },
{ id: 4, name: 'Gold Tortoise', price: 18.00, emoji: '🐞', badge: 'NEW', category: 'Beetles', description: 'A tiny golden jewel. This beetle can change color from gold to reddish-brown. Freshly collected.' },
{ id: 4, name: 'testing 123', price: 18.00, emoji: '🐞', badge: 'NEW', category: 'Beetles', description: 'A tiny golden jewel. This beetle can change color from gold to reddish-brown. Freshly collected.' },
{ id: 5, name: 'Jumping Spider', price: 12.00, emoji: '🕷️', category: 'Spiders', description: 'Adorable and intelligent. Known for their curious nature and impressive jumping abilities.' },
{ id: 6, name: 'Bullet Ant', price: 35.00, emoji: '🐜', category: 'Crawlers', description: 'Named for its extraordinarily painful sting. Handle with extreme care. Not for beginners.' },
{ id: 7, name: 'Atlas Moth', price: 55.00, emoji: '🦋', badge: 'RARE', category: 'Moths', description: 'One of the largest moths in the world with a wingspan up to 12 inches. Truly majestic.' },
Expand Down