File size: 3,592 Bytes
98687c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Fitbit Welcome</title>
<style>
  body { margin:0; padding:0; background:transparent; }
  #render-target{
    width:1080px; height:2400px;
    position:relative; overflow:hidden;
    background:#52B0A7; /* teal app background */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color:#0f0f0f;
  }
  /* Status bar */
  .statusbar{
    position:absolute; left:0; top:0; width:100%; height:120px;
    background:#ECECEC; border-bottom:1px solid #d6d6d6;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 36px; box-sizing:border-box; color:#4c4c4c;
    font-size:42px; letter-spacing:0.5px;
  }
  .status-icons{ display:flex; align-items:center; gap:26px; font-size:40px; }
  /* Illustration placeholder */
  .hero{
    position:absolute; left:0; top:120px; width:100%; height:1180px;
    background:#E0E0E0; border:1px solid #BDBDBD; box-sizing:border-box;
    display:flex; align-items:center; justify-content:center; color:#757575;
    font-size:44px; text-align:center; padding:20px;
  }
  /* Content area */
  .content{
    position:absolute; left:0; top:1340px; width:100%;
    text-align:center; padding:0 80px; box-sizing:border-box;
  }
  .brand{
    display:inline-flex; align-items:center; gap:16px;
    color:#0f0f0f; font-weight:600; font-size:60px;
  }
  .fitbit-dots{ width:56px; height:56px; }
  .title{
    margin-top:46px; line-height:1.12;
    font-size:88px; font-weight:700; color:#0e0e0e;
  }
  .btn{
    width:960px; height:140px; margin:70px auto 0;
    background:#1e1e1e; color:#fff; border-radius:90px;
    display:flex; align-items:center; justify-content:center; gap:26px;
    font-size:46px; box-shadow:0 10px 24px rgba(0,0,0,0.25);
    cursor:pointer;
  }
  .google-icon{
    width:74px; height:74px; border-radius:50%;
    background:#fff; color:#4285F4; display:flex;
    align-items:center; justify-content:center; font-weight:700; font-size:42px;
  }
  .secondary{
    margin-top:54px; font-size:44px; color:#0f0f0f;
  }
  /* Bottom home indicator */
  .home-indicator{
    position:absolute; bottom:38px; left:50%; transform:translateX(-50%);
    width:320px; height:14px; border-radius:10px; background:#cfcfcf;
  }
</style>
</head>
<body>
<div id="render-target">
  <!-- Status bar -->
  <div class="statusbar">
    <div>10:01</div>
    <div class="status-icons">
      <span></span>
      <span>🔒</span>
      <span>📶</span>
      <span>🔋</span>
    </div>
  </div>

  <!-- Illustration placeholder -->
  <div class="hero">[IMG: Illustration of legs stepping up stairs]</div>

  <!-- Main content -->
  <div class="content">
    <div class="brand">
      <!-- Simple dotted Fitbit-like mark -->
      <svg class="fitbit-dots" viewBox="0 0 24 24" aria-hidden="true">
        <circle cx="6" cy="12" r="2.2" fill="#0f0f0f"/>
        <circle cx="12" cy="6" r="2.2" fill="#0f0f0f"/>
        <circle cx="12" cy="12" r="2.2" fill="#0f0f0f"/>
        <circle cx="12" cy="18" r="2.2" fill="#0f0f0f"/>
        <circle cx="18" cy="12" r="2.2" fill="#0f0f0f"/>
      </svg>
      <span>fitbit</span>
    </div>

    <div class="title">
      Take the next step<br>
      toward a healthier,<br>
      more active life
    </div>

    <div class="btn">
      <div class="google-icon">G</div>
      <div>Sign in with Google</div>
    </div>

    <div class="secondary">Sign in with Fitbit</div>
  </div>

  <div class="home-indicator"></div>
</div>
</body>
</html>