Skip to content

Commit

Permalink
feat: images for seed cats
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAlbDR committed Mar 12, 2024
1 parent 155ef1a commit 9754c67
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions src/data/seed/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,12 @@ export const animals: Animal[] = [
status: 'awaiting_home',
type: 'cat',
gender: 'male',
images: [],
images: [
'siamese/felix1.webp',
'siamese/felix2.webp',
'siamese/felix3.webp',
'siamese/felix4.webp',
],
cat: {
playLevel: 'moderate',
kidsFriendly: true,
Expand All @@ -120,7 +125,11 @@ export const animals: Animal[] = [
status: 'awaiting_home',
type: 'cat',
gender: 'female',
images: [],
images: [
'maine-coon/luna1.webp',
'maine-coon/luna2.webp',
'maine-coon/luna3.webp',
],
cat: {
playLevel: 'low',
kidsFriendly: false,
Expand All @@ -142,7 +151,7 @@ export const animals: Animal[] = [
status: 'awaiting_home',
type: 'cat',
gender: 'male',
images: [],
images: ['bengal/simba1.webp', 'bengal/simba2.webp', 'bengal/simba3.webp'],
cat: {
playLevel: 'high',
kidsFriendly: true,
Expand All @@ -164,7 +173,7 @@ export const animals: Animal[] = [
status: 'awaiting_home',
type: 'cat',
gender: 'male',
images: [],
images: ['persian/milo1.webp', 'persian/milo2.webp', 'persian/milo3.webp'],
cat: {
playLevel: 'moderate',
kidsFriendly: false,
Expand All @@ -176,7 +185,7 @@ export const animals: Animal[] = [
name: 'Whiskers',
age: 2.5,
description: 'Gentle and calm',
breed: 'Ragdoll',
breed: 'Sphynx',
size: 'big',
publishStatus: 'published',
cityId: 5,
Expand All @@ -186,7 +195,11 @@ export const animals: Animal[] = [
status: 'awaiting_home',
type: 'cat',
gender: 'female',
images: [],
images: [
'sphynx/whiskers1.webp',
'sphynx/whiskers2.webp',
'sphynx/whiskers3.webp',
],
cat: {
playLevel: 'low',
kidsFriendly: true,
Expand Down

0 comments on commit 9754c67

Please sign in to comment.