import { json } from '@sveltejs/kit'; import type { RequestHandler } from '@sveltejs/kit'; interface Plant { id: string; name: string; image: string; price: number; category: string; } const mockPlants: Plant[] = [ { id: '1', name: 'Snake Plant', image: 'https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=400&h=400&fit=crop', price: 19.99, category: 'Indoor' }, { id: '2', name: 'Spider Plant', image: 'https://images.unsplash.com/photo-1584822173149-0f4e3ce7b3a5?w=400&h=400&fit=crop', price: 12.99, category: 'Indoor' }, { id: '3', name: 'Pothos', image: 'https://images.unsplash.com/photo-1582780350206-44e987cedc9c?w=400&h=400&fit=crop', price: 15.99, category: 'Indoor' }, { id: '4', name: 'Peace Lily', image: 'https://images.unsplash.com/photo-1600732690038-7f5e7b2929d1?w=400&h=400&fit=crop', price: 24.99, category: 'Indoor' }, { id: '5', name: 'ZZ Plant', image: 'https://images.unsplash.com/photo-1612872087721-e9b5152920aa?w=400&h=400&fit=crop', price: 22.99, category: 'Indoor' }, { id: '6', name: 'Monstera', image: 'https://images.unsplash.com/photo-1579586143593-c3b1e872cc18?w=400&h=400&fit=crop', price: 29.99, category: 'Indoor' }, { id: '7', name: 'Fiddle Leaf Fig', image: 'https://images.unsplash.com/photo-1586962359810-5b4d5a2a0a7e?w=400&h=400&fit=crop', price: 49.99, category: 'Indoor' }, { id: '8', name: 'Rose Bush', image: 'https://images.unsplash.com/photo-1469362102473-8622cfb973cd?w=400&h=400&fit=crop', price: 35.99, category: 'Outdoor' }, { id: '9', name: 'Lavender', image: 'https://images.unsplash.com/photo-1464423994725-4e047b797a44?w=400&h=400&fit=crop', price: 8.99, category: 'Outdoor' }, { id: '10', name: 'Succulent Mix', image: 'https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=400&h=400&fit=crop', price: 18.99, category: 'Succulents' }, { id: '11', name: 'Aloe Vera', image: 'https://images.unsplash.com/photo-1588205282197-4f845e3f3b9e?w=400&h=400&fit=crop', price: 14.99, category: 'Succulents' }, { id: '12', name: 'Echeveria', image: 'https://images.unsplash.com/photo-1578629814129-8f7e2f5c7e0e?w=400&h=400&fit=crop', price: 16.99, category: 'Succulents' } ]; export const GET: RequestHandler = () => { return json(mockPlants); };