48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import { Product, Category, BlogArticle, PromoCardData } from '../types';
|
|
|
|
export const categories: Category[] = [];
|
|
export const products: Product[] = [];
|
|
export const promoCards: PromoCardData[] = [];
|
|
|
|
export const brands = [
|
|
{ name: 'Amazon', logo: 'amazon' },
|
|
{ name: 'AMD', logo: 'amd' },
|
|
{ name: 'Facebook', logo: 'facebook' },
|
|
{ name: 'Logitech', logo: 'logitech' },
|
|
{ name: 'Apper', logo: 'apper' },
|
|
{ name: 'Hooli', logo: 'hooli' },
|
|
{ name: 'FedEx', logo: 'fedex' },
|
|
{ name: 'PayPal', logo: 'paypal' },
|
|
{ name: 'Netflix', logo: 'netflix' },
|
|
{ name: 'Spotify', logo: 'spotify' },
|
|
];
|
|
|
|
export const blogs: BlogArticle[] = [
|
|
{
|
|
id: 'blog-1',
|
|
title: 'The Future of Wireless Audio: True Stereo Earbuds',
|
|
excerpt: 'Explore how audio drivers and high bitrates are redefining our daily listening routines...',
|
|
date: 'July 10, 2026',
|
|
author: 'Sarah Connor',
|
|
image: '',
|
|
readTime: '5 min read',
|
|
},
|
|
{
|
|
id: 'blog-2',
|
|
title: 'Top 5 Tech Gadgets Every Student Needs in 2026',
|
|
excerpt: 'From digital note-taking tablets to portable power delivery adapters, stay ahead of the class...',
|
|
date: 'July 05, 2026',
|
|
author: 'James Smith',
|
|
image: '',
|
|
readTime: '8 min read',
|
|
},
|
|
{
|
|
id: 'blog-3',
|
|
title: 'How Smartwatches Changed Health Monitoring Forever',
|
|
excerpt: 'Continuous heart-rate checks, oxygen metrics, and sleep charts fit cleanly on your wrist...',
|
|
date: 'June 28, 2026',
|
|
author: 'Dr. Evelyn L.',
|
|
image: '',
|
|
readTime: '6 min read',
|
|
},
|
|
];
|