File size: 1,835 Bytes
e08ecbf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import highlightFirstmv from "../assets/videos/highlight-first.mp4";
import highlightSectmv from "../assets/videos/hightlight-third.mp4";
import highlightThirdmv from "../assets/videos/hightlight-sec.mp4";
import highlightFourthmv from "../assets/videos/hightlight-fourth.mp4";
import replay from "../assets/images/replay.svg";
import play from "../assets/images/play.svg";
import pause from "../assets/images/pause.svg";

import logo from "../assets/images/genomatics-logo.png"
import guide_1 from "../assets/images/guide-1.jpg"
import guide_2 from "../assets/images/guide-2.jpg"
import guide_3 from "../assets/images/guide-3.jpg"

export const highlightFirstVideo = highlightFirstmv;
export const highlightSecondVideo = highlightSectmv;
export const highlightThirdVideo = highlightThirdmv;
export const highlightFourthVideo = highlightFourthmv;
export const replayImg = replay;
export const playImg = play;
export const pauseImg = pause;

export const Logo = logo;
export const Guide1 = guide_1;
export const Guide2 = guide_2;
export const Guide3 = guide_3;

export const hightlightsSlides = [
    {
      id: 1,
      textLists: [
        "Enter A17 Pro.",
        "Game‑changing chip.",
        "Groundbreaking performance.",
      ],
      video: highlightFirstVideo,
      videoDuration: 4,
    },
    {
      id: 2,
      textLists: ["Titanium.", "So strong. So light. So Pro."],
      video: highlightSecondVideo,
      videoDuration: 5,
    },
    {
      id: 3,
      textLists: [
        "iPhone 15 Pro Max has the",
        "longest optical zoom in",
        "iPhone ever. Far out.",
      ],
      video: highlightThirdVideo,
      videoDuration: 2,
    },
    {
      id: 4,
      textLists: ["All-new Action button.", "What will yours do?."],
      video: highlightFourthVideo,
      videoDuration: 3.63,
    },
  ];