File size: 5,871 Bytes
fa881a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Decathlon UI Mock</title>
<style>
  body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
  #render-target {
    width:1080px; height:2400px; position:relative; overflow:hidden;
    background:#ffffff;
  }

  /* Status bar */
  .status-bar {
    height:110px;
    padding:18px 30px 0 30px;
    box-sizing:border-box;
    display:flex; align-items:flex-start; justify-content:space-between;
    color:#222;
    font-weight:600;
  }
  .status-left { display:flex; align-items:center; gap:18px; }
  .time { font-size:42px; letter-spacing:0.5px; }
  .temp { font-size:36px; color:#555; }
  .mini-icons { display:flex; align-items:center; gap:14px; }
  .status-right { display:flex; align-items:center; gap:20px; }

  /* Layout containers */
  .screen-body { padding:20px 30px 0 30px; box-sizing:border-box; }
  .row { display:flex; gap:28px; }
  .top-row .img-card { height:640px; flex:1; }
  .bottom-row { margin-top:28px; }
  .bottom-row .img-card { height:700px; flex:1; }

  .img-card {
    background:#E0E0E0;
    border:1px solid #BDBDBD;
    border-radius:14px;
    display:flex; align-items:center; justify-content:center;
    color:#757575; font-size:30px; text-align:center; padding:16px;
  }

  /* Banner */
  .banner {
    margin-top:28px;
    height:800px;
    border-radius:16px;
    background: linear-gradient(180deg, #9FE3E5 0%, #77D6D9 50%, #5FCFD3 100%);
    position:relative;
    border:1px solid #BBDCDD;
    overflow:hidden;
  }
  /* subtle wave layers */
  .banner::before, .banner::after {
    content:"";
    position:absolute; left:-120px; right:-120px;
    height:380px; border-radius:50%;
    background: rgba(255,255,255,0.25);
    transform: translateY(140px);
  }
  .banner::after {
    height:460px; transform: translateY(430px);
    background: rgba(255,255,255,0.22);
  }
  .logo-box {
    position:absolute; left:50%; top:50%;
    transform:translate(-50%, -50%);
    width:760px; height:180px;
    background:#2E6BD5;
    border-radius:12px;
    border:2px solid #1D57B8;
    display:flex; align-items:center; justify-content:center;
    color:#ffffff; font-size:80px; font-weight:800; letter-spacing:4px;
  }
  .logo-box span { opacity:0.95; }

  /* Map/location pin */
  .pin {
    position:absolute; left:540px; top:1620px; transform:translateX(-50%);
    width:58px; height:58px;
    background:#3B8BFF; border-radius:50%;
    box-shadow:0 6px 12px rgba(0,0,0,0.15);
  }
  .pin::after {
    content:"";
    position:absolute; left:50%; bottom:-26px;
    width:0; height:0;
    border-left:14px solid transparent;
    border-right:14px solid transparent;
    border-top:26px solid #3B8BFF;
    transform:translateX(-50%);
  }
  .pin::before {
    content:"";
    position:absolute; left:50%; top:50%;
    width:20px; height:20px; background:#ffffff; border-radius:50%;
    transform:translate(-50%, -50%);
  }

  /* Home indicator */
  .home-indicator {
    position:absolute; left:50%; bottom:40px; transform:translateX(-50%);
    width:600px; height:14px; border-radius:8px; background:#BDBDBD;
    opacity:0.9;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">
      <span class="time">10:34</span>
      <span class="temp">14°</span>
      <div class="mini-icons">
        <!-- simple sun icon -->
        <svg width="26" height="26" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="5" fill="#FDB813"></circle>
          <g stroke="#FDB813" stroke-width="2">
            <line x1="12" y1="1" x2="12" y2="5"></line>
            <line x1="12" y1="19" x2="12" y2="23"></line>
            <line x1="1" y1="12" x2="5" y2="12"></line>
            <line x1="19" y1="12" x2="23" y2="12"></line>
          </g>
        </svg>
        <!-- tiny cloud icon -->
        <svg width="28" height="24" viewBox="0 0 24 24">
          <path d="M7 17h9a4 4 0 0 0 0-8h-1.3a5 5 0 0 0-9.7 2.2A4 4 0 0 0 7 17z" fill="#A0A0A0"></path>
        </svg>
      </div>
    </div>
    <div class="status-right">
      <!-- signal bars -->
      <svg width="28" height="24" viewBox="0 0 24 24">
        <rect x="3" y="13" width="3" height="8" fill="#666"></rect>
        <rect x="9" y="9" width="3" height="12" fill="#666"></rect>
        <rect x="15" y="5" width="3" height="16" fill="#666"></rect>
      </svg>
      <!-- Wi-Fi icon -->
      <svg width="30" height="24" viewBox="0 0 24 24">
        <path d="M2 8c5-5 15-5 20 0" stroke="#666" stroke-width="2" fill="none" />
        <path d="M6 12c3-3 9-3 12 0" stroke="#666" stroke-width="2" fill="none" />
        <circle cx="12" cy="17" r="2" fill="#666"></circle>
      </svg>
      <!-- Battery icon -->
      <svg width="42" height="24" viewBox="0 0 42 24">
        <rect x="1" y="5" width="34" height="14" rx="3" ry="3" stroke="#666" stroke-width="2" fill="none"></rect>
        <rect x="4" y="8" width="27" height="8" rx="2" fill="#666"></rect>
        <rect x="36" y="9" width="4" height="6" rx="1" fill="#666"></rect>
      </svg>
    </div>
  </div>

  <div class="screen-body">

    <!-- Top image row -->
    <div class="row top-row">
      <div class="img-card">[IMG: Child on pool float in blue water]</div>
      <div class="img-card">[IMG: Hiker resting on wet rock in rain]</div>
    </div>

    <!-- Central banner with logo -->
    <div class="banner">
      <div class="logo-box"><span>DECATHLON</span></div>
    </div>

    <!-- Bottom image row -->
    <div class="row bottom-row">
      <div class="img-card">[IMG: Cyclists with road bikes outdoors]</div>
      <div class="img-card">[IMG: Woman doing indoor cardio workout]</div>
    </div>

  </div>

  <!-- Location pin overlay -->
  <div class="pin"></div>

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