File size: 3,791 Bytes
a4ce251
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3d3368d
a4ce251
 
 
566fc1a
 
 
 
 
 
a4ce251
566fc1a
 
 
 
 
 
 
 
 
 
 
a4ce251
 
 
566fc1a
 
 
 
a4ce251
 
 
 
 
566fc1a
 
 
 
 
 
a4ce251
566fc1a
 
 
 
 
 
 
 
 
a4ce251
 
 
566fc1a
 
 
 
a4ce251
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// src/data/products.js

export const products = [
  {
    slug: "iphone-17-pro",
    name: "iPhone 17 Pro",
    category: "iPhone",
    tagline: "The ultimate pro camera system.",
    priceFrom: 1099,
    heroImage:
      "https://www.apple.com/v/iphone-17-pro/d/images/overview/product-viewer/initial__fo4stdzx5uy6_large.jpg",
    gallery: [
      "https://www.apple.com/v/iphone-17-pro/d/images/overview/product-viewer/initial__fo4stdzx5uy6_large.jpg",
      "https://www.apple.com/v/iphone-17-pro/d/images/overview/design/design_endframe__ckynsj4a5lua_large.jpg",
      "https://www.apple.com/v/iphone-17-pro/d/images/overview/cameras/intro/hero_camera__0ggzvjy8m0ya_xlarge.jpg",
    ],
    highlights: [
      "Heat-forged aluminum unibody enclosure for durability and performance.",
      "A19 Pro chip with advanced cooling and breakthrough battery life.",
      "Pro camera system with 48MP rear cameras and long optical-quality zoom.",
    ],
    youtubeId: "dQw4w9WgXcQ",
    specs: {
      display: "6.3-inch Super Retina XDR (iPhone 17 Pro)",
      chip: "A19 Pro",
      camera: "Pro camera system (48MP rear cameras)",
      design: "Heat-forged aluminum unibody enclosure",
    },
  },

  {
    slug: "laptop-air",
    name: "MacBook Air",
    category: "Mac",
    tagline: "Speed of lightness.",
    priceFrom: 999,
    heroImage:
      "https://www.apple.com/v/macbook-air/x/images/overview/hero/hero_static__c9sislzzicq6_large.png",
    gallery: [
      "https://www.apple.com/v/macbook-air/x/images/overview/hero/hero_static__c9sislzzicq6_large.png",
      "https://www.apple.com/v/macbook-air/x/images/overview/design/design_hero_endframe__dv7t8042ce6a_large.jpg",
      "https://www.apple.com/v/macbook-air/x/images/overview/design/color/design_top_skyblue__eepkvlvjzcia_large.jpg",
      "https://www.apple.com/v/macbook-air/x/images/overview/design/color/design_side_skyblue__dtyt9gw4nfiq_large.jpg",
      "https://www.apple.com/v/macbook-air/x/images/overview/performance/performance_hero_endframe__brqjd2udp1yq_large.jpg",
      "https://www.apple.com/v/macbook-air/x/images/overview/design/color/design_magsafe_skyblue__gii6y9jn1yai_large.jpg",
    ],
    highlights: [
      "Superfast Apple silicon performance.",
      "Thin, light, and portable design.",
      "All-day battery life.",
    ],
    youtubeId: "dQw4w9WgXcQ",
    specs: {
      display: "13.6-inch or 15.3-inch Liquid Retina (varies by model)",
      chip: "Apple silicon (varies by configuration)",
      memory: "16GB–32GB unified memory (varies)",
      storage: "256GB–2TB SSD (varies)",
    },
  },

  {
    slug: "tablet",
    name: "iPad (11-inch, A16)",
    category: "iPad",
    tagline: "Lovable. Drawable. Magical.",
    priceFrom: 349,
    heroImage:
      "https://www.apple.com/v/ipad-11/b/images/overview/hero/hero__ecv967jz1y82_large.jpg",
    gallery: [
      "https://www.apple.com/v/ipad-11/b/images/overview/hero/hero__ecv967jz1y82_large.jpg",
      "https://www.apple.com/ca/ipad-11/images/overview/design/fan__e9709q800z6u_large.jpg",
      "https://www.apple.com/v/ipad-11/b/images/overview/features/features_startframe__kms0fdnde2qa_large.jpg",
      "https://www.apple.com/v/ipad-11/b/images/overview/features/features__eycgjbkikqky_large.jpg",
    ],
    highlights: [
      "All-screen 11-inch Liquid Retina display.",
      "A16 chip for smooth performance.",
      "Works with Apple Pencil and Magic Keyboard Folio (compatibility varies).",
    ],
    youtubeId: "dQw4w9WgXcQ",
    specs: {
      display: "11-inch Liquid Retina",
      chip: "A16",
      camera: "12MP Wide (rear) + 12MP Center Stage (front, landscape)",
      storage: "128GB / 256GB / 512GB",
    },
  },
];

export function getProduct(slug) {
  return products.find((p) => p.slug === slug);
}