/**
* Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export const mockCatalog = [
{
id: '1',
name: 'Gaming Laptop Pro',
price: 1299,
category: 'Laptops',
stock: 15,
},
{ id: '2', name: 'UltraBook Air', price: 899, category: 'Laptops', stock: 8 },
{
id: '3',
name: 'Gaming Mouse RGB',
price: 49,
category: 'Accessories',
stock: 50,
},
{
id: '4',
name: 'Mechanical Keyboard',
price: 129,
category: 'Accessories',
stock: 30,
},
{
id: '5',
name: '4K Monitor 27"',
price: 399,
category: 'Monitors',
stock: 20,
},
{
id: '6',
name: 'Wireless Headphones',
price: 199,
category: 'Accessories',
stock: 25,
},
{
id: '7',
name: '4K Monitor 32"',
price: 499,
category: 'Monitors',
stock: 20,
},
{
id: '8',
name: 'Wireless Headphones',
price: 199,
category: 'Accessories',
stock: 25,
},
{
id: '9',
name: '4K Monitor 40"',
price: 599,
category: 'Monitors',
stock: 20,
},
{
id: '10',
name: 'Wireless Headphones',
price: 199,
category: 'Accessories',
stock: 25,
},
];