source: petify-frontend/src/data/mockListings.ts@ fa32d0f

Last change on this file since fa32d0f was 92e7c7a, checked in by veronika-ils <ilioskaveronika@…>, 12 hours ago

Petify fullstack project

  • Property mode set to 100644
File size: 1.9 KB
Line 
1import type { Listing } from '../types/listing'
2
3export const mockListings: Listing[] = [
4 {
5 id: 'luna-001',
6 title: 'Luna — Gentle Lab Mix',
7 petType: 'Dog',
8 breed: 'Labrador Retriever Mix',
9 age: 2,
10 ageUnit: 'years',
11 gender: 'Female',
12 size: 'Large',
13 city: 'Austin',
14 state: 'TX',
15 country: 'USA',
16 price: 150,
17 currency: 'USD',
18 status: 'Available',
19 tags: ['Good with kids', 'House trained'],
20 vaccinated: true,
21 spayed: true,
22 imageUrl:
23 'https://images.unsplash.com/photo-1517849845537-4d257902454a?auto=format&fit=crop&w=1200&q=80',
24 description:
25 'Sweet, social, and loves fetch. Looking for an active family and long walks.',
26 },
27 {
28 id: 'milo-002',
29 title: 'Milo — Playful Orange Tabby',
30 petType: 'Cat',
31 breed: 'Domestic Shorthair',
32 age: 1,
33 ageUnit: 'year',
34 gender: 'Male',
35 size: 'Small',
36 city: 'Seattle',
37 state: 'WA',
38 country: 'USA',
39 price: 90,
40 currency: 'USD',
41 status: 'Available',
42 tags: ['Indoor only', 'Cuddly'],
43 vaccinated: true,
44 neutered: true,
45 imageUrl:
46 'https://images.unsplash.com/photo-1595433562696-19f5f41b0e29?auto=format&fit=crop&w=1200&q=80',
47 description:
48 'A confident little explorer. Purrs instantly and loves wand toys.',
49 },
50 {
51 id: 'bella-003',
52 title: 'Bella — Calm Senior Companion',
53 petType: 'Dog',
54 breed: 'Beagle',
55 age: 9,
56 ageUnit: 'years',
57 gender: 'Female',
58 size: 'Medium',
59 city: 'Denver',
60 state: 'CO',
61 country: 'USA',
62 price: 50,
63 currency: 'USD',
64 status: 'Pending',
65 tags: ['Low energy', 'Great on leash'],
66 vaccinated: true,
67 spayed: true,
68 imageUrl:
69 'https://images.unsplash.com/photo-1548199973-03cce0bbc87b?auto=format&fit=crop&w=1200&q=80',
70 description:
71 'Perfect couch buddy. Would love a quiet home and a soft blanket.',
72 },
73]
Note: See TracBrowser for help on using the repository browser.