diff --git a/androidcontrol_data_load.py b/androidcontrol_data_load.py new file mode 100644 index 0000000000000000000000000000000000000000..7edf5b8ab188b5a9de31aca8e54dffedff151c85 --- /dev/null +++ b/androidcontrol_data_load.py @@ -0,0 +1,107 @@ +import os +import requests +from requests.adapters import HTTPAdapter +from urllib3.util.retry import Retry +from tqdm import tqdm + +# ================= 配置区域 ================= +# 【非常重要】请确认这里的 URL 是文件的“直链” +# 如果你在浏览器里点击这个链接能直接开始下载文件,那就是对的。 +BASE_URL = "https://storage.googleapis.com/gresearch/android_control/" + +SAVE_DIR = "./downloads" +# =========================================== + +if not os.path.exists(SAVE_DIR): + os.makedirs(SAVE_DIR) + +# --- 构建下载文件清单 --- +# 1. 加入 20 个数据分片文件 +files_to_download = [f"android_control-{i:05d}-of-00020" for i in range(20)] + +# 2. 加入额外的 JSON 配置文件 +files_to_download.extend([ + "splits.json", + "test_subsplits.json" +]) +# ----------------------- + +# 设置网络请求 session +session = requests.Session() +headers = { + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" +} +# 设置自动重试防止网络波动 +retries = Retry(total=5, backoff_factor=1, status_forcelist=[500, 502, 503, 504]) +session.mount('http://', HTTPAdapter(max_retries=retries)) +session.mount('https://', HTTPAdapter(max_retries=retries)) + +print(f"开始下载任务,共 {len(files_to_download)} 个文件") +print(f"保存路径: {SAVE_DIR}\n") + +for file_name in files_to_download: + # 构造完整 URL + url = f"{BASE_URL.rstrip('/')}/{file_name}" + save_path = os.path.join(SAVE_DIR, file_name) + + try: + # 1. 发送 HEAD 请求获取文件大小 + # 注意:如果是 JSON 小文件,服务器响应会很快 + head_resp = session.head(url, headers=headers, timeout=10) + + # 某些服务器对小文件可能不返回 content-length,默认为 0 + total_size = int(head_resp.headers.get('content-length', 0)) + + # 2. 检查本地文件状态(断点续传逻辑) + first_byte = 0 + if os.path.exists(save_path): + local_size = os.path.getsize(save_path) + + # 如果本地大小等于服务器大小(且服务器返回了有效大小),则跳过 + if total_size > 0 and local_size == total_size: + print(f"✅ {file_name} 已存在且完整,跳过。") + continue + elif total_size > 0 and local_size < total_size: + print(f"⚠️ {file_name} 不完整,尝试续传 ({local_size}/{total_size})...") + first_byte = local_size + else: + # 如果本地文件比服务器大,或者服务器没给大小(通常不会),或者想强制覆盖 + # 这里简单处理:如果大小不对劲就重下,或者如果是第一次下载 + if total_size > 0 and local_size > total_size: + print(f"❌ {file_name} 本地文件异常,重新下载。") + first_byte = 0 + + # 3. 构造请求头 (Range) + resume_header = headers.copy() + if first_byte > 0: + resume_header['Range'] = f"bytes={first_byte}-" + + # 4. 下载内容 + response = session.get(url, stream=True, headers=resume_header, timeout=30) + response.raise_for_status() # 检查 404 等错误 + + # 写入模式 + mode = 'ab' if first_byte > 0 else 'wb' + + # 进度条 + with tqdm( + total=total_size, + initial=first_byte, + unit='B', + unit_scale=True, + unit_divisor=1024, + desc=file_name, + ascii=False + ) as bar: + with open(save_path, mode) as f: + for chunk in response.iter_content(chunk_size=8192): + if chunk: + f.write(chunk) + bar.update(len(chunk)) + + except Exception as e: + print(f"\n❌ 下载 {file_name} 失败: {e}") + if "404" in str(e): + print(" (请检查该文件是否存在于服务器上)") + +print("\n所有任务处理完毕。") \ No newline at end of file diff --git a/code/1000/1000_0.html b/code/1000/1000_0.html new file mode 100644 index 0000000000000000000000000000000000000000..cea9a29e1770d5f9da40aca74da8d1b623ebf7e1 --- /dev/null +++ b/code/1000/1000_0.html @@ -0,0 +1,444 @@ + + + + +Mobile UI Mock + + + +
+ + +
+
6:05
+
+ + + + + + + + + + +
+
+ + +
+ +
+ + + +
+ +
+ + + + +
+ +
+ + + + + +
+ +
+ + + + +
+
+ +
+ + + + + +
+ +
+ + + + + +
+ +
+ + + + + + +
+
+ + +
+
+ +
+
[IMG: Video Frame]
+ +
+ +
+ +
+
00:00
+
+
00:15
+
+ +
+
+
+
+
+ +
+ + + + +
+
+ + +
+
+ + + + +
Element Animations
+
+ + + +
+
+ +
+
+
+
Apply same animation to all pages
+
+
+
+
Animate elements together
+
+ +
+
(None)
+
None
+
Bounce In
+
Swing In
+
Fade
+
+
+ +
+ + + +
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/1000/1000_1.html b/code/1000/1000_1.html new file mode 100644 index 0000000000000000000000000000000000000000..af3e51f1f06319e5d8a402dbbad464a12ffc85df --- /dev/null +++ b/code/1000/1000_1.html @@ -0,0 +1,352 @@ + + + + + +Mobile UI - Element Animations + + + +
+ + +
+
6:06
+
+ + + + + + + + + + + + +
+
+ + +
+
+
+ + + +
+
+ + + + +
+
+ + + + +
+
+ + + + +
+
+
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+
+ + +
+
+
+ +
+
[IMG: Video Preview]
+ +
+
+
+ +
+ 00:00 +
+ 00:15 +
+ +
+
+
+
+
+
+
+
+
+ +
+ + + + +
+
+ + +
+
+
Element Animations
+
+ + + + +
+
+ +
+
+
Apply same animation to all pages
+
+
+
+
Animate elements together
+
+ +
+
Swing In
+
Fade In
+
Rotate in from left
+
Rotate in from screen
+
Zoom In
+
Slide Up
+
+ +
+ + + +
+
+ +
+
+ + \ No newline at end of file diff --git a/code/1000/1000_2.html b/code/1000/1000_2.html new file mode 100644 index 0000000000000000000000000000000000000000..5d61cb2ecb2f98ffcfb2828639f33da4067ea599 --- /dev/null +++ b/code/1000/1000_2.html @@ -0,0 +1,401 @@ + + + + + +UI Mock - Element Animations + + + +
+ + +
+
+
6:06
+
+
+
+
+
+
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + + +
+ +
+ + + + +
+ +
+ + + +
+ +
+ + + +
+
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+
+ + +
+
+
+ +
+
[VIDEO PLACEHOLDER]
+ +
+ + + +
+ + +
+
+
+
+
+
+
+
+ + +
+
00:00
+
+
00:15
+
+
+ + +
+ + + +
+
+ + +
+
+
+
+ + + + Element Animations +
+
+ + + +
+
+ +
+
+
Apply same animation to all pages
+
+
+
+
Animate elements together
+
+ +
+
Rotate in from screen
+
Zoom In
+
Zoom Out
+
Light Speed In
+
+
+ + +
+
+ + + + +
Animations
+
+
+ + + +
Duration
+
+
+ + + +
Manage pages
+ 9+ +
+
+ +
+
+ +
+ + \ No newline at end of file diff --git a/code/1000/1000_3.html b/code/1000/1000_3.html new file mode 100644 index 0000000000000000000000000000000000000000..ae1bdaa836087615ff5c0e1d1456f9ad799959cd --- /dev/null +++ b/code/1000/1000_3.html @@ -0,0 +1,352 @@ + + + + + +Editor - Element Animations + + + +
+ + +
+
+
6:07
+ + + + +
+
+ + + + + + + + + +
+
+ + +
+
+
+ + + +
+
+ + + + +
+
+ + + + + +
+
+
+
+ + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + + +
+
+
+ + +
+
+
+ +
+ [IMG: Video Frame] +
+ + + +
+ + +
+
+
+
+
+
+
+
+ + +
+
00:00
+
+
00:15
+
+
+ +
[IMG: Office Team Collage]
+ +
+ + + + +
+
+ + +
+
+
+ + + + + Expand +
+
Element Animations
+
+ + + +
+
+ +
+
+
Apply same animation to all pages
+
+
+
+
Animate elements together
+
+ +
+
Rotate in from screen
+
Zoom In
+
Zoom Out
+
Light Speed In
+
+ + +
+ + + +
+ + \ No newline at end of file diff --git a/code/10000/10000_0.html b/code/10000/10000_0.html new file mode 100644 index 0000000000000000000000000000000000000000..56b9ef08ad9285e5d4326732fd3fcadd44a7cc8f --- /dev/null +++ b/code/10000/10000_0.html @@ -0,0 +1,298 @@ + + + + +Nike Air Max 97 - Mobile Mock + + + +
+ +
+
+
10:57
+
+
+
+
+
+
+
+
+ + + + + + + + +
+
+
+
+
+
+ + +
+
+ + + +
+
Nike Air Max 97
+
+
+ + + + +
+
+ + + + +
+
+
+ + +
+
+ made for running, the 97 is now a pair of kicks you can rock anywhere, any day of the week. +
+ + + + + +
+
Select Size
+
+
+ +
Add to Bag
+ +
+ Favorited + +
+ +
+ This product is excluded from all promotions and discounts. +
+ +
+
Size & Fit
+
+
+ +
+
Reviews (2)
+
+
+ +
+
+
+
+
+ + + +
+ + \ No newline at end of file diff --git a/code/10000/10000_1.html b/code/10000/10000_1.html new file mode 100644 index 0000000000000000000000000000000000000000..ae4bbc0ad115211c75634ee763eee7bccc8f2271 --- /dev/null +++ b/code/10000/10000_1.html @@ -0,0 +1,333 @@ + + + +Shop UI Mock + + + +
+ + +
+
10:58
+
+ + + + + + + + + + + + + + + + + +
+
+ + +
+
SHOP
+
+ + + + + +
+
+ + +
+ + + + +
Find products...
+
+ + +
+
MEN
+
WOMEN
+
KIDS
+
+ + + + + +
+ + +
+
CELEBRATE WITH SAVINGS
+
Enjoy 30% off thousands of 3-Stripes styles.
+ +
+
SHOES
+
CLOTHING
+
ACCESSORIES
+
BACK TO SCHOOL
+
NEW & TRENDING
+
+ ONLY AT ADIDAS + EXCLUSIVE +
+
+
+ + +
+ + + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10000/10000_2.html b/code/10000/10000_2.html new file mode 100644 index 0000000000000000000000000000000000000000..776b3bcd18584603245213bf2fa64b3bc6bd733c --- /dev/null +++ b/code/10000/10000_2.html @@ -0,0 +1,316 @@ + + + +Mobile UI - Search with Keyboard + + + +
+ + +
+
10:59
+
+ + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + +
+
Find products...
+
+ + + + + +
+
+ + +
+ + +
+
+
+ + + + +
+
🙂
+
GIF
+
+ + + + +
+
+ + + G + +
+
+ + + + + + +
+
+ + + + +
+
+ +
+
q
+
w
+
e
+
r
+
t
+
y
+
u
+
i
+
o
+
p
+
+ +
+
a
+
s
+
d
+
f
+
g
+
h
+
j
+
k
+
l
+
+ +
+
+
z
+
x
+
c
+
v
+
b
+
n
+
m
+
+
+ +
+
?123
+
,
+
🙂
+
+
.
+
🔍
+
+ +
+
+
+ + \ No newline at end of file diff --git a/code/10000/10000_3.html b/code/10000/10000_3.html new file mode 100644 index 0000000000000000000000000000000000000000..725f118bf8b241ee55335730a6050ca97295a748 --- /dev/null +++ b/code/10000/10000_3.html @@ -0,0 +1,231 @@ + + + +Superstar Shoes - Mock UI + + + + +
+ + +
+
11:00
+
+
+
+
+
+
+
+ + +
+
+ + + +
+ +
+ + + + + + + + +
+
+ + +
PRODUCTS
+ +
+ + +
+
[IMG: White Adidas Superstar Shoe]
+
+
Superstar Shoes
+
+
+ + +
+
[IMG: Black/White Adidas Superstar XLG]
+
+ + + +
+
NEW
+
AR
+
+
$125.00
+
Superstar Shoes
+
Women's Originals +2
+
+
+ + +
+
[IMG: Grey/Blue Adidas Superstar]
+
NEW
+
+
$110.00
+
Superstar Shoes
+
Men's Originals
+
+
+
+ + +
SUGGESTIONS
+
mens superstar shoes [59]
+
women superstar shoes [42]
+ + +
+
+
Shoes
+
Shows
+
👟
+
+ + + + + + + + +
+
+ +
+
+
q
w
e
r
t
+
y
u
i
o
p
+
+
+
a
s
d
f
g
+
h
j
k
l
+
+
+
+
z
x
c
v
b
+
n
m
+
+
+
+
?123
+
,
+
+
.
+
+ + + + +
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10000/10000_4.html b/code/10000/10000_4.html new file mode 100644 index 0000000000000000000000000000000000000000..34e1fd9b105f632bebae93f9a8a578bce34c3722 --- /dev/null +++ b/code/10000/10000_4.html @@ -0,0 +1,259 @@ + + + +Superstar Shoes - Loading + + + +
+ + +
+
+ 11:01 +
+
+ + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + +
+
SUPERSTAR SHOES
+
+ + + + + +
+
+
+ + +
+
+
+
Loading products…
+
+
+ + +
+ + + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10000/10000_5.html b/code/10000/10000_5.html new file mode 100644 index 0000000000000000000000000000000000000000..2dbc7591f3cc98e156309f9e3ce84d55dcff5bdb --- /dev/null +++ b/code/10000/10000_5.html @@ -0,0 +1,404 @@ + + + +Superstar Shoes - UI Mock + + + + +
+ + +
+
+
11:01
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+ + +
+
+ + + +
+
+
SUPERSTAR SHOES
+
128 RESULTS
+
+
+ + + + +
+
+ + +
+
+ + + +
+
KIDS
+
MEN
+
WOMEN
+
UNISEX
+
+ + +
+ + +
+
+
+ + + +
+ [IMG: White Adidas Superstar Shoe] +
+
BEST SELLER
+
$100.00
+
+
Superstar Shoes
+
+
Men's Originals
+
+ +31 + + + + +
+
+
+
+ + +
+
+
+ + + +
+ [IMG: Kids Group Wearing Adidas on Stage] +
+
BEST SELLER
+
$80.00
+
+
Superstar Shoes
+
+
Kids Unisex Originals
+
+ +3 + + + + +
+
+
+
+ + +
+
+
+ + + +
+ [IMG: Black Adidas Superstar Shoe] +
+
$70.00
+
+
Superstar Shoes
+
+
Kids Unisex Originals
+
+ +3 + + + + +
+
+
+
+ + +
+
+
+ + + +
+
[IMG: Person wearing Adidas Superstar]
+
+
$60.00
+
+
Superstar Shoes
+
+
Kids Unisex Originals
+
+
+
+ + +
+
+
+ + + +
+ [IMG: Lifestyle photo - pants closeup] +
+
+ +
+ + +
+ + + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10000/10000_6.html b/code/10000/10000_6.html new file mode 100644 index 0000000000000000000000000000000000000000..a4c308d2947e6cb4f87d80d3c7a9cbb2485b9e70 --- /dev/null +++ b/code/10000/10000_6.html @@ -0,0 +1,334 @@ + + + +Superstar Shoes - Mobile UI Mock + + + +
+ + +
+ [IMG: Lifestyle photo with table and sneakers] +
+
+
11:05
+
+
+
+
+
+ + + + + + + + + + + +
+
+
+ + + +
+
+ + +
+
[IMG: Superstar Shoe - side view]
+
+ + +
+
BEST SELLER
+
+ + +
+
[IMG: Black]
+
[IMG: White/Black]
+
[IMG: Core Black]
+
[IMG: Cloud White]
+
[IMG: Navy/Stripes]
+
[IMG: Cream/Stripes]
+
+
+ + +
+
+
SUPERSTAR SHOES
+
+ + + +
+
+
+
$100.00
+
MEN'S ORIGINALS
+
+
+
+ SELECT SIZE + + + +
+
+
+ + +
+ +
+ +
+ + \ No newline at end of file diff --git a/code/10000/10000_7.html b/code/10000/10000_7.html new file mode 100644 index 0000000000000000000000000000000000000000..f12b90193affcd4a1d836d9db039e210c8c298dc --- /dev/null +++ b/code/10000/10000_7.html @@ -0,0 +1,171 @@ + + + +Adidas Product UI + + + +
+ + +
+
+
11:06
+
+
+
+
+
+
+
+
+
+ + +
+ + + + +
+ + +
[IMG: Lifestyle Banner with table and shoe]
+ + +
+
[IMG: White Adidas Superstar Shoe]
+ + +
+ + +
+
+ + +
+
BEST SELLER
+
+ + + + + +
+
+ + + +
+
SUPERSTAR SHOES
+
+
$100.00
+
MEN'S ORIGINALS
+
+ +
+
SELECT SIZE
+ + + +
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10001/10001_0.html b/code/10001/10001_0.html new file mode 100644 index 0000000000000000000000000000000000000000..47979c8ec7da732390006a717eeb0041efc011e6 --- /dev/null +++ b/code/10001/10001_0.html @@ -0,0 +1,247 @@ + + + +Product Detail - Avocado + + + + +
+
+
+
8:51
+
+
+
+
+
+
+
+ +
+ +
+
[IMG: Westfalia logo & avocado]
+
+ +
+ + + + + +
+ +
+
Westfalia Avocado Imported Semi Ripe
+ See All Westfalia Products + + + +
+
+
1 piece
+
+
₹89
+
₹111
+
19% Off
+
+
+
+
+
1
+
+
+
+
+ +
+ +
+
Product Information
+
+ +
+
+ + +
+ +
Similar Products
+
+
+
%
+
Add items worth ₹10 to get
Free Delivery
+
+
+
1/5
+
+ +
+
+
+
+ +
+
1 Item | ₹89
+
+ + + + + + + View Cart +
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10001/10001_1.html b/code/10001/10001_1.html new file mode 100644 index 0000000000000000000000000000000000000000..ca3c4cd7b154552e55c95eae714a77770d71707e --- /dev/null +++ b/code/10001/10001_1.html @@ -0,0 +1,381 @@ + + + +Cart UI + + + +
+ + +
+
8:52
+
+ + 📶 + 🔋 +
+
+ + +
+
+ +
+
Cart (1)
+
Add More
+
+ + +
+ + +
+
+
%
+
+
+ Add items worth ₹10 to get Free Delivery +
+
+
+
1/6
+
+
+
+
+
+
+
+
+ + +
+
+
[IMG: Avocado]
+
+
Westfalia Avocado
Imported Semi Ripe
+
1 piece
+
+ +
+
+ +
+
1
+
+ +
+
+ +
+
₹89
+
₹111
+
+
+
+ + +
+
+ +
+ Unlock new offer +
+ +
+
+ + + + Buy Fruits and Vegetables worth ₹10 to get Potato at special price. +
+ +
+ +
+
[IMG: Potato]
+
+
Potato
+
1 Kg i
+
+ +
Add
+
+
₹9
+
₹35
+
+
+
+ + +
+
+
%
+ Avail Offers / Coupons +
+
+ +
+
+ + +
You Might Have Missed
+
+
+
+
5% Off
+
[IMG: Tissue Roll Pack]
+
+
+
So Soft Tissue Roll
4 in1 340 Pulls
+
+
+ +
+
+
[IMG: Amul Taaza Milk Pouch]
+
+
+
Amul Taaza Toned
Fresh Milk (Pouch)
+
+
+ +
+
+
17% Off
+
[IMG: Cauliflower]
+
+
+
Cauliflower
+
+
+
+ +
+ + +
+
+
+ +
+
Enter your delivery address
+
+
Add Address To Proceed
+
+ +
+ + \ No newline at end of file diff --git a/code/10002/10002_0.html b/code/10002/10002_0.html new file mode 100644 index 0000000000000000000000000000000000000000..3906eff038af781ade3a8e4973a38b30215d6c73 --- /dev/null +++ b/code/10002/10002_0.html @@ -0,0 +1,355 @@ + + + + + +Files UI - Mock + + + +
+ +
+
+ 8:52 + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + +
+
+ + + + + +
+
+ + + + + + + + Large files +
+
+ + + + + + + + This week +
+
+ + +
BROWSE FILES IN OTHER APPS
+
+
+
D
+
Drive
+
+
+
P
+
Photos
+
+
+
B
+
Bug reports
+
+
+
S
+
System trac...
+
+
+
Z
+
ZArchiver
+
+
+ + +
+
Recent images
+
+ + + + + + +
+
+ +
+ +
+ + + +
[IMG: Desk photo]
+
+ + + +
[IMG: Desk photo]
+
+ + + +
[IMG: Desk photo]
+ + +
+ + + +
[IMG: Desk photo]
+
+ + + +
[IMG: Desk photo]
+
+ + + +
[IMG: Desk photo]
+ + +
+ + + +
[IMG: Desk photo]
+
+ + + +
[IMG: Desk photo]
+
+ + + +
[IMG: Desk photo]
+ + +
+ + + +
[IMG: Desk photo]
+
+ + + +
[IMG: Desk photo]
+
+ + + +
[IMG: Hands on keyboard]
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10002/10002_1.html b/code/10002/10002_1.html new file mode 100644 index 0000000000000000000000000000000000000000..090b430fc87e02050f49bc31db844c9de40d5fd8 --- /dev/null +++ b/code/10002/10002_1.html @@ -0,0 +1,286 @@ + + + + + +Presentation Viewer Mock + + + +
+ + +
+
8:54
+
+ + + + + +
+
+ + + + + + + + + +
+
+ + +
+
+ + + +
Presentation
+
+
+ + + + + + + + + +
+
+ + +
+
+
+
+
+
+
The Hunter
+
+
+ +
+ +
+
+
+
+
+ +
+
+ +
+
+ + +
+
+ + + + +
Present
+
+
+ + + + +
Notes
+
+
+ + + + +
Edit
+
+
+ + + + +
Find
+
+
+ + + + + + +
Share
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10002/10002_2.html b/code/10002/10002_2.html new file mode 100644 index 0000000000000000000000000000000000000000..db026ebf80cf964beb17b38a1e235f9a2af8fb71 --- /dev/null +++ b/code/10002/10002_2.html @@ -0,0 +1,262 @@ + + + + + +Presentation Viewer Mock + + + +
+ + +
+
+
8:55
+
+
+
+
+
+
+
+
+ + + + + + +
+
+
+ + +
+
+ +
+
Presentation
+
+
+ + + +
+
+ + + + + +
+
+
+ + +
+
+
+
Slide 1 of 2
+
[IMG: Slide 1 Preview - "The Hunter"]
+
+
Edit
+
Copy
+
New Comment
+
Share
+
+
+ +
+ +
+
[IMG: Slide 2 Preview - Empty template]
+
+
+
+ + +
+
+ + + + + +
Present
+
+
+ + + + + + +
Notes
+
+
+ + + + + +
Edit
+
+
+ + + + +
Find
+
+
+ + + + + + + +
Share
+
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10002/10002_4.html b/code/10002/10002_4.html new file mode 100644 index 0000000000000000000000000000000000000000..1af43da6075b02bcb071536919553b2490933ab1 --- /dev/null +++ b/code/10002/10002_4.html @@ -0,0 +1,199 @@ + + + + + +Select images - Mock + + + +
+ +
+
8:55
+
+ + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + +
+
+ + +
+ + + +
Select images
+
+ + + +
+
+ + +
+
[IMG: Office desk photo]
+
[IMG: Office desk with cables]
+
[IMG: Hands typing on laptop]
+ +
[IMG: Office desk close-up]
+
[IMG: Desk adapters and wires]
+
[IMG: Laptop screen on desk]
+ +
[IMG: Laptop and hands]
+
[IMG: Card and cable on desk]
+
[IMG: Desk with earphones]
+ +
[IMG: People at office desk]
+
[IMG: Hands near trackpad]
+
[IMG: Cables and adapter]
+ +
[IMG: Under desk - shoes]
+
[IMG: Under desk - bag and adapter]
+
[IMG: Under desk - shoes]
+ +
[IMG: Adapter and cables on desk]
+
[IMG: Desk cables and card]
+
[IMG: Legs and shoes near desk]
+ +
[IMG: Under desk - bag and adapter]
+
[IMG: Desk with laptop edge]
+
[IMG: Office desk photo]
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10002/10002_5.html b/code/10002/10002_5.html new file mode 100644 index 0000000000000000000000000000000000000000..fb1135ae4855ca9c232a0b863aa7da665c0b94e7 --- /dev/null +++ b/code/10002/10002_5.html @@ -0,0 +1,221 @@ + + + + + +Select images - Gallery + + + +
+ +
+
8:56
+
+ + + + + + + + + + + + + +
+
+ + +
+ + + +
Select images
+
+ + + + +
+ + + + + +
+ + + +
1
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10002/10002_6.html b/code/10002/10002_6.html new file mode 100644 index 0000000000000000000000000000000000000000..59a5e4beaea606c8e7e61ee77f26028bca418207 --- /dev/null +++ b/code/10002/10002_6.html @@ -0,0 +1,243 @@ + + + + + +Photo Editor UI Mock + + + +
+ + +
+
+ + + +
+
+
1/1
+ + +
[IMG: Office desk with laptop, cables, and workspace]
+ + +
+
+ +
+ + Add +
+ +
+ + Filters +
+ +
+ + Crop +
+ +
+ + Rotate +
+ +
+ + More +
+
+ +
+ Done + +
+ + + +
+ + + + +
+ + \ No newline at end of file diff --git a/code/10002/10002_7.html b/code/10002/10002_7.html new file mode 100644 index 0000000000000000000000000000000000000000..c3746e2a9301d035008043b0dc14a087cfba235e --- /dev/null +++ b/code/10002/10002_7.html @@ -0,0 +1,400 @@ + + + + + +Mobile Presentation Editor Mock + + + +
+ + +
+
+
8:57
+
+
+
+
+
+
+ + + + + + + + + + + + + +
+
+ + +
Presentation
+ + +
+ +
+ + + +
+ +
+ + + + +
+ +
+ + + + + +
+ +
+ + + + +
+ +
+ + + + +
+ +
+ + + + +
+ +
+ + + + + +
+
+ + +
+
+
+
+
+
Double tap to add title
+ +
+ [IMG: Office desk photo] +
+
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ + + + + + Notes +
+
+ + + + Comments +
+
+ + +
+
+
+
1
+
+
+
+
2
+
+
+
+
+
+
+
+ + +
+ +
+ + + + +
+ +
+ + + + +
+ +
+ + + + + +
+ +
+ + + + + +
+ +
+ + + + + +
+ +
+ + + + +
+
+ + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10003/10003_0.html b/code/10003/10003_0.html new file mode 100644 index 0000000000000000000000000000000000000000..8e8c05891a281da51e5b77f470b548aca6cd1ccd --- /dev/null +++ b/code/10003/10003_0.html @@ -0,0 +1,495 @@ + + + +App Grid UI Mock + + + + +
+ + +
+
10:35
+
+ + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + +
+
+ + + + + + +
+
Reminder
+
+ +
+
+ + + + + + +
+
All Recipes …
+
+ +
+
+ + + + + +
+
OpenTable
+
+ +
+
+ + + + + + +
+
Kitchen Sto…
+
+ + +
+
+ + + + + +
+
Deliveroo
+
+ +
+
+ + + + + + + +
+
Duolingo
+
+ +
+
+ + + B + +
+
Booking.com
+
+ +
+
+ + + + +
+
Airbnb
+
+ + +
+
+ + K + +
+
KAYAK
+
+ +
+
+ + + + + +
+
Expedia
+
+ +
+
+ + + H&M + +
+
H&M
+
+ +
+
+ + REDFIN + +
+
Redfin
+
+ + +
+
+ + + + + +
+
Rentberry
+
+ +
+
+ + + + + + +
+
Trovit Homes
+
+ +
+
+ + + train + +
+
Trainline
+
+ +
+
+ + + + + + +
+
Citymapper
+
+ + +
+
+ + + + + + +
+
Omio
+
+ +
+
+ + + + + +
+
SBB Mobile
+
+ + +
+
+ +
+
+ + +
+ +
+ + + +
+ +
+ + + + +
+ +
+ + + + + + +
+ +
+ + + + + +
+
+ + +
+
+
G
+
Search
+
+
+ + + + + + + + + + + + +
+
+ + + + +
+ + \ No newline at end of file diff --git a/code/10003/10003_1.html b/code/10003/10003_1.html new file mode 100644 index 0000000000000000000000000000000000000000..f9d746bf0834f2691fc61a105183a080919f8855 --- /dev/null +++ b/code/10003/10003_1.html @@ -0,0 +1,347 @@ + + + + +Mobile UI - Plan + + + +
+ + +
+
+
10:36
+
+ + + + + + + + + + + + + +
+
+ +
Plan
+ +
+ + + + + + +
+ +
+
Timetable
+
Touch timetable
+
Map
+
+
+ + +
+
+
+
+
+
+
From
+
To
+
+ + +
+ + +
+ + + + + + + + + +
+ + +
+ + + + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10003/10003_2.html b/code/10003/10003_2.html new file mode 100644 index 0000000000000000000000000000000000000000..af9d9e2934a6113471f6d978241b7414fc37e444 --- /dev/null +++ b/code/10003/10003_2.html @@ -0,0 +1,182 @@ + + + +Generated UI + + + +
+ + +
+
+
10:38
+
+
+
+
+
+
+
+
+ +
+
Plan
+
+ +
+
+
+ + +
+
+
+ +
+ +
+
+
+
+
+
+
+
From
+
+
+
+ +
+
+
To
+
+
+
+ +
+
+
+
+ + + + + +
+
Location access not given
+
+
+ +
+
+
+ + + + + +
+
Guildford
+
+
+
+ +
+
+
+ + + + + +
+
Dundee
+
+
+
+
+
+
+ + +
+
+
+
🙂
+
GIF
+
⚙️
+
G
+
🎨
+
🎤
+
+
+
q
w
e
r
t
y
u
i
o
p
+
+
+
a
s
d
f
g
h
j
k
l
+
+
+
z
x
c
v
b
n
m
+
+
+
?123
+
,
+
😊
+
+
.
+
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10003/10003_3.html b/code/10003/10003_3.html new file mode 100644 index 0000000000000000000000000000000000000000..6916c94263c27f116e9f64e91444b4c2359cb7b1 --- /dev/null +++ b/code/10003/10003_3.html @@ -0,0 +1,328 @@ + + + +Mobile UI - Plan + + + + +
+ + +
+
+
10:38
+
+ + + + +
+
+ +
+
+ + +
+
Plan
+
+ + + + +
+
+ + +
+
+
+
+
+ +
+ Dundee +
+ +
+
+
+
To
+
+
+
+ + +
+
+
+ + +
+
Dundee
+
+ +
+
+ +
+
+ +
+
Dunderland
+
+ +
+
+ +
+
+ +
+
Dundenheim, Rathaus
+
+ +
+
+ +
+
+ +
+
Dundenheim, Grosse Gasse
+
+ +
+
+ +
+
+ +
+
Dundenheim, Offenburger Str.
+
+ +
+
+ +
+
+ +
+
Dundalk
+
+ +
+
+
+ + +
+
Dundee
+
+
+
q
w
e
r
t
y
u
i
o
p
+
+
+
a
s
d
f
g
h
j
k
l
+
+
+
z
x
c
v
b
n
m
+
+
+
+
?123
+
,
+
+
.
+
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10003/10003_4.html b/code/10003/10003_4.html new file mode 100644 index 0000000000000000000000000000000000000000..06cdbf48d18dd74dd31b78f86bc6879e75c5946c --- /dev/null +++ b/code/10003/10003_4.html @@ -0,0 +1,345 @@ + + + +Plan Screen UI + + + +
+ +
+
+
+ + + + +
+
Plan
+
+ + + + + +
+
+
+ +
+
+ + + +
+ +
+
Dundee
+
+
+
+
To
+
+
+ + + + +
+
+
+ +
+
+
+
+ + + + + +
+
Location access not given
+
+
+ +
+
+
+ + + + + +
+
Dundee
+
+
+ + + + +
+
+ +
+
+
+ + + + + +
+
Guildford
+
+
+ + + + +
+
+
+ +
+ + +
+
+
+
+
GIF
+
+
G↔
+
🎨
+
🎙
+
+
+
q
w
e
r
t
y
u
i
o
p
0
+
+
+
a
s
d
f
g
h
j
k
l
+
+
+
z
x
c
v
b
n
m
+
+
+
?123
+
,
+
+
.
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10003/10003_5.html b/code/10003/10003_5.html new file mode 100644 index 0000000000000000000000000000000000000000..b9d67b20a336542c861e3d782e0200c1f2bff73b --- /dev/null +++ b/code/10003/10003_5.html @@ -0,0 +1,394 @@ + + + +Plan - UI Mock + + + +
+ + +
+
+
10:40
+
+ +
+ + + + + + +
+
+ + + + + + +
+
+ +
+ +
Plan
+
+ + + + + +
+
+
+ + +
+
+
+
+
+
Dundee
+
+
Guildford
+
+ + + + +
+
+
+ + +
+
+
+ + + + + +
+
Guildford
+
+ + + + +
+
+ +
+
+
Guildford London Road
+
+ + + +
+
+ +
+
+
Guilherand-Granges Sadi Carnot
+
+ + + +
+
+ +
+
+
Guillarei
+
+ + + +
+
+ +
+
+
Guillerval
+
+ + + +
+
+ +
+
+
Guilberville, Covoiturage
+
+ + + +
+
+
+ + +
+
Guildford
+
+
+
q
w
e
r
t
y
u
i
o
p
+
+
+
a
s
d
f
g
h
j
k
l
+
+
+
z
x
c
v
b
n
m
,
.
+
+
+
?123
+
+
🙂
+
+
space
+
.
+
+
+
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10003/10003_6.html b/code/10003/10003_6.html new file mode 100644 index 0000000000000000000000000000000000000000..581f811ba31803241c3c6bdd08d41ebe9efff2c8 --- /dev/null +++ b/code/10003/10003_6.html @@ -0,0 +1,320 @@ + + + +Connections UI + + + +
+ +
+
10:40
+
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
+
+ +
+
+
Connections
+
+
+ +
+
+
+ + +
+ +
+
+
+
+

Dundee

+

Guilford London Road

+
+ Mon 30.10. + 06:10 Dep +
+
+ +
+
+ +
+
+
+
+ +
Monday 30.10.2023
+ + +
+
+
+
🚉
+
IC
+
+
+
Direction Edinburgh Waverley
+
06:35 + 14:33 +
+
+
+
+
+
+
+
+
+
+
+ Pl. 2 + R +
+
+
7 h 58 min
+
+
+ + +
+
+
+
🚉
+
IC
+
+
+
Direction Edinburgh Waverley
+
07:15 + 15:32 +
+
+
+
+
+
+
+
+
+
+
+ Pl. 1 + R +
+
+
8 h 17 min
+
+
+ + +
+
+
+
🚉
+
IC
+
+
+
Direction Edinburgh Waverley
+
07:40 + 15:33 +
+
+
+
+
+
+
+
+
+
+
+ Pl. 2 + R +
+
+
7 h 53 min
+
+
+ + +
+
+
+
🚉
+
IC
+
+
+
Direction London King's Cross
+
09:08 + 16:32 +
+
+
+
+
+
+
+
+
+
+
+ Pl. 1 + R +
+
+
7 h 24 min
+
+
+
+ + +
+ + + + + +
+
+ + \ No newline at end of file diff --git a/code/10004/10004_0.html b/code/10004/10004_0.html new file mode 100644 index 0000000000000000000000000000000000000000..eb740e43769a860f3c31c602e3bdda103a2f793d --- /dev/null +++ b/code/10004/10004_0.html @@ -0,0 +1,362 @@ + + + + +Mobile UI Render + + + +
+ + +
+
+ 6:11 + +
+ + + 100% +
+
+
+ + +
+
+
+
+
+
+
+ +
+
+ +
+
+
+ +
+ Beginner A1 + +
+ +
+
3%
+
+
+ +
+
+ +
+
Try Premium for free
+
+
+ + +
+

Chapter 1

+
2/6 lessons completed
+ +
+
+
+
+
[IMG: Lesson avatar]
+
+
+
Olá!
+
+
+ + + + +
+
+ +
+ +
+
+
+
[IMG: Lesson avatar]
+
+
+
Saying your name
+
+
+ + + + +
+
+
+
+ + +
+
+ + + + +
+

Unlock Offline Mode

+

Upgrade to Premium to download chapters and learn anywhere, anytime

+
+ + +
+
+ + +
+ +
+
+ +
+ + \ No newline at end of file diff --git a/code/10004/10004_1.html b/code/10004/10004_1.html new file mode 100644 index 0000000000000000000000000000000000000000..2f95b585b0f16d49119a84981278f7be5a8856d6 --- /dev/null +++ b/code/10004/10004_1.html @@ -0,0 +1,343 @@ + + + +Profile Screen Mock + + + +
+ + +
+
6:11
+
+
+
+
+
+
+
+
100%
+
+
+
+ + +
+
Profile
+
+
+ + + + + + +
+
+ + + + + + + +
+
+
+ + +
+
F
+
+
Fabio Teixeira
+
+ + + + + + +
+
+
+ + +
+

Friends (0)

+
Find Portuguese speakers
+
+ + +
+
PROGRESS
+
EXERCISES
+
CORRECTIONS
+
+ + +
+

Fluency

+
+ +
Portuguese
+
+ +
+
+
+
1%
+
+
+
+ +
Fluent in Portuguese
+ +
+
+
Words learned
+
+ + + + + 0 +
+
+
+
Certificates
+
+ + + + + + 0 +
+
+
+
+ + +
+

Days learned

+
+
+
+ + + + +
+ Fri +
+
+
+ Sat +
+
+
+ Sun +
+
+
+ Mon +
+
+
+ Tue +
+
+
+ Wed +
+
+
+ Thu +
+
+
+ + +
+ + + + + +
+ +
+
+ + \ No newline at end of file diff --git a/code/10004/10004_2.html b/code/10004/10004_2.html new file mode 100644 index 0000000000000000000000000000000000000000..9accf0ba8cb9c4f0e89f54eef00a8638061b9a69 --- /dev/null +++ b/code/10004/10004_2.html @@ -0,0 +1,259 @@ + + + +Settings UI + + + +
+ + +
+
6:12
+
+ + + + + + + + + + + + + + + + + + + +
+ + + + + + 100% +
+
+
+ + +
+
+ + + +
+
Settings
+
+ + +
+
+ +
Account
+ +
+
Name
+
Fabio Teixeira
+
+ +
+
Photo
+
F
+
+ +
+
About me
+
Write a bit about yourself
+
+ +
+
Email
+
fabioteixeira00123@gmail.com
+
+ +
+
Country/Region
+
India
+
+ +
+
I speak
+
English
+
+ + + + + +
+ +
General
+ + + +
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10004/10004_3.html b/code/10004/10004_3.html new file mode 100644 index 0000000000000000000000000000000000000000..992dcc7f17940d1c52fafd982d669492d6a225ff --- /dev/null +++ b/code/10004/10004_3.html @@ -0,0 +1,228 @@ + + + + +Notifications Settings + + + +
+ +
+
6:12
+
+ + + + + + + + + + + + + + + + + + + + + 100% +
+
+ + +
+
+ + + +
+
Notifications
+
+ + +
+
+
Friend Requests
+ +
+

Private mode

+
By enabling private mode, you choose not to receive friend requests from otherlearners
+
+
+
+ +
+
General
+ +
+

Notifications

+
+
+ +
+

Correction received

+
i.e. Alexandra has corrected your exercise
+
+
+ +
+

Correction added

+
e.g. Alexandra added a correction
+
+
+ +
+

Replies

+
e.g. Alexandra has replied to your correction
+
+
+ +
+

Friend requests

+
e.g. Alexandra has sent you a friend request
+
+
+
+
+
+ + \ No newline at end of file diff --git a/code/10004/10004_4.html b/code/10004/10004_4.html new file mode 100644 index 0000000000000000000000000000000000000000..4442c9d0596df4938647a26fa1bad3e2de4d9a26 --- /dev/null +++ b/code/10004/10004_4.html @@ -0,0 +1,152 @@ + + + +Notifications Settings UI + + + +
+ +
+
6:13
+
+ 📶 + + 🔋 100% +
+
+
+ + +
+ + + +
Notifications
+
+ + +
+ +
+
FRIEND REQUESTS
+
+
+
+
Private mode
+
By enabling private mode, you choose not to receive friend requests from otherlearners
+
+
+
+
+
+ + +
+
GENERAL
+
+
+
+
Notifications
+
+
+
+ +
+
+
Correction received
+
i.e. Alexandra has corrected your exercise
+
+
+
+ +
+
+
Correction added
+
e.g. Alexandra added a correction
+
+
+
+ +
+
+
Replies
+
e.g. Alexandra has replied to your correction
+
+
+
+ +
+
+
Friend requests
+
e.g. Alexandra has sent you a friend request
+
+
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_0.html b/code/10006/10006_0.html new file mode 100644 index 0000000000000000000000000000000000000000..75b9a80f8873ba066ad7814ef52c5f4f423485b2 --- /dev/null +++ b/code/10006/10006_0.html @@ -0,0 +1,114 @@ + + + + +Fitbit Welcome + + + +
+ +
+
10:01
+
+ + 🔒 + 📶 + 🔋 +
+
+ + +
[IMG: Illustration of legs stepping up stairs]
+ + +
+
+ + + fitbit +
+ +
+ Take the next step
+ toward a healthier,
+ more active life +
+ +
+
G
+
Sign in with Google
+
+ +
Sign in with Fitbit
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_1.html b/code/10006/10006_1.html new file mode 100644 index 0000000000000000000000000000000000000000..7f03421c4989e63973c42d026e7d1e37f81dc5fa --- /dev/null +++ b/code/10006/10006_1.html @@ -0,0 +1,235 @@ + + + + +Fitbit Login Mock + + + +
+ + +
+
10:01
+
+ 🏃 + Calm + + 🔒 +
+
+ + + + + + + + + + + +
+
+ + +
+
[IMG: Fitness legs illustration / stairs graphic]
+
+ + +
+ +
+ Take the next step + toward a healthier, + more active life +
+
+ + +
+
+ Google +
+ + + +
Continue as Cerebra
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_10.html b/code/10006/10006_10.html new file mode 100644 index 0000000000000000000000000000000000000000..1e63efb601a33d98ab1497c0b56b5be9fdeebd0e --- /dev/null +++ b/code/10006/10006_10.html @@ -0,0 +1,187 @@ + + + +Fitbit Weight Picker Mock + + + +
+ + +
+
10:06
+
+ + + + + +
+
+ + +
+
👤
+
Add Fitbit profile info
+
+ Your profile info helps personalize some metrics. You can change this info anytime in settings. +
+ +
+
Height
+
Sex
+
+
+ + + + + +
+ + + + +
+ + \ No newline at end of file diff --git a/code/10006/10006_11.html b/code/10006/10006_11.html new file mode 100644 index 0000000000000000000000000000000000000000..f4da7e84f46b794c9b41e25271fdde992d6fd661 --- /dev/null +++ b/code/10006/10006_11.html @@ -0,0 +1,244 @@ + + + +Weight Picker Modal - Mock + + + +
+ + +
+
10:07
+
+
+
+
+
+
+
+ + +
+
👤
+
Add Fitbit profile info
+
+ Your profile info helps personalize some metrics and recommendations. You can change this at + any time in settings. +
+
Save & continue
+
+ + +
+ + + + +
+ + \ No newline at end of file diff --git a/code/10006/10006_12.html b/code/10006/10006_12.html new file mode 100644 index 0000000000000000000000000000000000000000..1a693e14b5eb8c293bbfa97be6d20d01cb9373ab --- /dev/null +++ b/code/10006/10006_12.html @@ -0,0 +1,264 @@ + + + +Fitbit Weight Picker + + + +
+ + +
+
10:07
+
+
+
+
+
+
+
+ + +
+
Add Fitbit profile info
+
+ Your profile info helps personalize some metrics and estimates. You can + change it later in Settings. Learn more in our Privacy Policy. +
+ +
+
Height
+
Sex
+
+ +
Save & continue
+
+ + +
+ + + + +
+ + \ No newline at end of file diff --git a/code/10006/10006_13.html b/code/10006/10006_13.html new file mode 100644 index 0000000000000000000000000000000000000000..168b569764e57b828a86e285bd3f0795623287d8 --- /dev/null +++ b/code/10006/10006_13.html @@ -0,0 +1,272 @@ + + + + +Fitbit Weight Picker + + + +
+ + +
+
10:07
+
+ + + + +
+
+ + +
+
+
Add Fitbit profile info
+
Your profile info helps personalize some metrics. Choose units and enter details to set up your profile.
+ +
Height
+
Sex
+
+ +
+ +
Save & continue
+
+ + +
+ + +
+ + \ No newline at end of file diff --git a/code/10006/10006_14.html b/code/10006/10006_14.html new file mode 100644 index 0000000000000000000000000000000000000000..3ccc52bc3fa2d0d907cea30e0ce5d200f0332b49 --- /dev/null +++ b/code/10006/10006_14.html @@ -0,0 +1,189 @@ + + + +Fitbit Profile - Weight Modal + + + +
+ + +
+
10:07
+
+ + Calm + +
+
+
+
+ + +
+
+
Add Fitbit profile info
+
+ Your profile info helps personalize some metrics and recommendations. You can + choose what is shared in your profile and settings. Privacy controls apply. +
+ +
+
Height — 168 cm
+
Sex — Prefer not to say ▼
+
+ +
+
Exit
+
Save & continue
+
+
+ + +
+ + + + +
+ + \ No newline at end of file diff --git a/code/10006/10006_15.html b/code/10006/10006_15.html new file mode 100644 index 0000000000000000000000000000000000000000..815d0588b05821143d61d0e5a5df85101d66471f --- /dev/null +++ b/code/10006/10006_15.html @@ -0,0 +1,294 @@ + + + +Fitbit Weight Modal - Mock + + + +
+ + +
+ 10:08 +
+ + + + +
+
+ + +
+
+
👤
+
Add Fitbit profile info
+
+
+ Your profile info helps personalize some metrics. You can choose what to share and settings later in Privacy. +
+ +
+
Height169 cm
+
SexPrefer not to say ▾
+
+ + +
+ + +
+ + + +
+ + \ No newline at end of file diff --git a/code/10006/10006_16.html b/code/10006/10006_16.html new file mode 100644 index 0000000000000000000000000000000000000000..26e9ece4b4b0806126118b1d918607fab0fdd2e9 --- /dev/null +++ b/code/10006/10006_16.html @@ -0,0 +1,205 @@ + + + +Fitbit Weight Picker UI + + + +
+ + +
+
10:08
+
+
+
+
+
+
+
+
+
+ + +
+
👤
+
Add Fitbit profile info
+
+ Your profile info helps personalize some metrics. Choose what to share and set preferences in Privacy settings. +
+ +
+
Height
+
Sex
+
[More Fields]
+
+
+ + + + +
+ + +
+

Weight

+
Fitbit uses weight to estimate calories and calculate needs
+ +
+
+
+ + + +
+ KG +
+
STONE
+
LBS
+
+ +
+
72 kg
+
+
73 kg
+
+
74 kg
+
+ +
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10006/10006_17.html b/code/10006/10006_17.html new file mode 100644 index 0000000000000000000000000000000000000000..6d05b65f24bb468ade516d2a1f8f1bbd9bba5e86 --- /dev/null +++ b/code/10006/10006_17.html @@ -0,0 +1,206 @@ + + + +Fitbit Profile Info - Weight Picker + + + +
+ + +
+
+
10:08
+ +
+
+
+
+
+ + + +
+
+ + + + +
+
+
+ + +
+
👤
+
Add Fitbit profile info
+
+ Your profile info helps personalize some metrics. You can change these later in settings and privacy. +
+ +
+
Height: 180 cm
+
Sex: Female
+
+ + +
+ + +
+
+

Weight

+
+ Fitbit uses weight to estimate calories and calculate needs +
+ +
+
+
+ + + +
+
KG
+
+
STONE
+
LBS
+
+ +
+
73 kg
+
+
74 kg
+
+
75 kg
+
+ +
+ +
+ + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10006/10006_18.html b/code/10006/10006_18.html new file mode 100644 index 0000000000000000000000000000000000000000..5eed945cff90b13d55bd200253236eb39aa254cb --- /dev/null +++ b/code/10006/10006_18.html @@ -0,0 +1,162 @@ + + + +Fitbit Profile Info + + + +
+ + +
+
+
10:08
+
+
+
+
+
+
+
+
+
+
+
+ +
+
👤
+
Add Fitbit profile info
+
+ Your profile info helps personalize some metrics, like stride length and speed. + To choose who sees this info, go to sharing settings in your Account > Social & Sharing > Privacy. +
+ +
Your profile info
+ +
+
+
Height
+
165 cm
+
+
+
Weight
+
74 kg
+
+
+ +
+
Sex
+ +
+ +
+ Fitbit uses sex to calculate metrics like calories burned, and to provide reference points + you can use for comparison +
+
+ + + +
+ + \ No newline at end of file diff --git a/code/10006/10006_19.html b/code/10006/10006_19.html new file mode 100644 index 0000000000000000000000000000000000000000..3f295d7c00fea82ba17ff787e63b6760a9e403d6 --- /dev/null +++ b/code/10006/10006_19.html @@ -0,0 +1,220 @@ + + + + +Fitbit Profile Info + + + +
+ + +
+
10:09
+
+
+ +
+
+ +
+
+ +
+
+
+ +
+
+ +
+ +
Add Fitbit profile info
+ +
+ Your profile info helps personalize some metrics, like stride length and speed. To choose who sees this info, go to sharing settings in your Account > Social & Sharing > Privacy. +
+ +
Your profile info
+ +
+
+
+
Height
+
165 cm
+
+
+
Weight
+
74 kg
+
+
+ + +
+
+ +
+ Exit +
Save & continue
+
+ +
+ + \ No newline at end of file diff --git a/code/10006/10006_2.html b/code/10006/10006_2.html new file mode 100644 index 0000000000000000000000000000000000000000..2c9b17fb4472b5c034587eea709533b50f76844f --- /dev/null +++ b/code/10006/10006_2.html @@ -0,0 +1,135 @@ + + + +Fitbit Onboarding UI + + + +
+ + +
+
+ 10:02 +
+ +
+ + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+ + + +

Looks like you're new to Fitbit

+ +
We couldn't find a Fitbit profile associated with this Google Account.
+ +
If you've used Fitbit before, you can sign in to move your existing Fitbit profile and information to your Google Account.
+
+ + +
+
Continue as a new user
+
Sign in with existing Fitbit account
+ +
+ +
+ + \ No newline at end of file diff --git a/code/10006/10006_20.html b/code/10006/10006_20.html new file mode 100644 index 0000000000000000000000000000000000000000..8dba332ddf149a13f8db491f0eebd5908cfa18cd --- /dev/null +++ b/code/10006/10006_20.html @@ -0,0 +1,266 @@ + + + +Fitbit Profile Info - Mock + + + +
+ +
+
+
10:10
+ + + + + + + + +
+
+ + + + + + + + + + +
+
+ + +
+
+ + + + + +
+ +

Add Fitbit profile info

+ +
+ Your profile info helps personalize some metrics, like stride length and speed. To choose who sees this info, go to sharing settings in your Account > Social & Sharing > Privacy. +
+ +
Your profile info
+ +
+
+
Height
+
165 cm
+
+
+
Weight
+
74 kg
+
+
+ +
Sex
+ + +
+ Fitbit uses sex to calculate metrics like calories burned, and to provide reference points you can use for comparison +
+
+ + +
+
Exit
+
Save & continue
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_21.html b/code/10006/10006_21.html new file mode 100644 index 0000000000000000000000000000000000000000..a2393e0a501213e5c1cdd4303bae9805d9bec2c8 --- /dev/null +++ b/code/10006/10006_21.html @@ -0,0 +1,236 @@ + + + +Fitbit Privacy Screen + + + +
+ + +
+
10:11
+
+ + + + + + + + + + + + + + +
+
+ + +
+ + +

Understand your privacy on Fitbit

+

+ Take a moment to learn what information will be collected about you, how it will be used, and the privacy controls available to you. +

+ +
What data is collected
+

+ To set up Fitbit, some personal information is required, including your height, weight, and sex. +

+

+ You can also provide your health and wellness data, like your activity, exercise, sleep, and heart rate. +

+

+ You can add this information manually or by connecting devices, apps, or services to Fitbit. Data from connected devices depends on your device features. Some features need your additional consent. +

+ +
How Google will use this data
+

Google will use your health and wellness data to:

+ +
+ + +
+
Exit
+ +
+ +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_22.html b/code/10006/10006_22.html new file mode 100644 index 0000000000000000000000000000000000000000..5994cb8f8709929cbc3387bf30463ddbb69843c9 --- /dev/null +++ b/code/10006/10006_22.html @@ -0,0 +1,130 @@ + + + +Fitbit Privacy - Mock + + + +
+ + +
+
10:12
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+ + +

+ Your Fitbit health and wellness data won’t be used for Google Ads, and will be kept separate from Google Ads data. +

+ +

+ Your name, profile photo and the date you join Fitbit will be visible to other Fitbit users in your Fitbit profile. Your step count and ‘about me’ information will be visible to your friends and other members of closed groups you choose to join. You can update your name, profile photo and ‘about me’ information, and have control over how you share other Fitbit data. +

+ +
Managing your privacy
+ + +
Google's commitment to your privacy
+ +
+ + + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10006/10006_23.html b/code/10006/10006_23.html new file mode 100644 index 0000000000000000000000000000000000000000..1a30d347b5ba9da0dbad4867b3160472c3d2f151 --- /dev/null +++ b/code/10006/10006_23.html @@ -0,0 +1,229 @@ + + + + +Privacy Consent Screen + + + +
+ + +
+
10:12
+
+ + + + + + + + + + + + + + +
+
+ + +
+ +

Managing your privacy

+ + +

Google's commitment to your privacy

+ + +
+ +
To set up Fitbit, give your consent
+ + + + + +
+ + +
+
Exit
+
Agree & continue
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_24.html b/code/10006/10006_24.html new file mode 100644 index 0000000000000000000000000000000000000000..ea7d4afe7c31a208a4b2a744068b02a1c019ed4b --- /dev/null +++ b/code/10006/10006_24.html @@ -0,0 +1,202 @@ + + + +Privacy Consent UI + + + +
+ +
+
10:14
+
+ + + + + + + + + + + + + +
+
+ +
+

Managing your privacy

+ + +

Google's commitment to your privacy

+ + +
+ +

To set up Fitbit, give your consent

+ + + + +
+ +
+ +
Agree & continue
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_25.html b/code/10006/10006_25.html new file mode 100644 index 0000000000000000000000000000000000000000..8b85fb0ee869ce259f7fc2f35ab29de83321b5d4 --- /dev/null +++ b/code/10006/10006_25.html @@ -0,0 +1,154 @@ + + + +Fitbit Consent Screen + + + +
+ + +
+
10:14
+
+ + + + + + + + + + + + + +
+
+ +
+

Managing your privacy

+ + +

Google's commitment to your privacy

+ + +
+ +

To set up Fitbit, give your consent

+ + + + +
+ +
+ + +
+ +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_26.html b/code/10006/10006_26.html new file mode 100644 index 0000000000000000000000000000000000000000..aa49b8c7176d470fa8cfeec2a947543430731d00 --- /dev/null +++ b/code/10006/10006_26.html @@ -0,0 +1,226 @@ + + + +Fitbit Consent Screen Mock + + + +
+ + +
+
10:14
+
+ +
+
+
+
+
+
+
+ +
+

Managing your privacy

+ + +

Google's commitment to your privacy

+ + +
+ +
To set up Fitbit, give your consent
+ + + + +
+ + + +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_27.html b/code/10006/10006_27.html new file mode 100644 index 0000000000000000000000000000000000000000..fbfea54c3a8c9bfdcd342073ab76032f837b87dd --- /dev/null +++ b/code/10006/10006_27.html @@ -0,0 +1,176 @@ + + + + +Fitbit Ready Screen + + + +
+ + +
+
+
10:15
+ + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + +
+
+ + +
+ +
+ + + + +
+ +
Fitbit is ready to use
+ +
+ Before you get started, you can choose whether to contribute to health and wellness research, and set up your notification preferences +
+
+ + + + + +
+
+
+
+ + \ No newline at end of file diff --git a/code/10006/10006_29.html b/code/10006/10006_29.html new file mode 100644 index 0000000000000000000000000000000000000000..7d88c5b41f35d5aa28034a0689a8538897227579 --- /dev/null +++ b/code/10006/10006_29.html @@ -0,0 +1,148 @@ + + + + +Fitbit Research Consent + + + +
+ + +
+
+
10:16
+
+
+ + + + + + + + + + + + + + +
+
+ + +
+
+

+ If you agree, when you use Fitbit products and services, Fitbit and Google will collect and use your data to research and develop new health and wellness products and services for you and others. This data includes your: +

+ +
    +
  • Health and wellness data, such as steps, heart rate, and sleep data
  • +
  • Data from a device that you connect to Fitbit
  • +
+ +

+ For example, heart rate data from Fitbit devices helped develop a new heart health notifications feature. +

+ +

+ Your data may also be used to generate findings that could be included in publications (such as science journals or Fitbit blog articles) to contribute to general knowledge about health and science. For example, activity, heart rate, and sleep data contributed to published findings that Fitbit devices could help detect flu outbreaks. +

+ +

+ None of the data used for these purposes will include your name, email, or other information that directly identifies you. +

+ +
Choice is yours
+ +

+ Allowing your data to be used for research and development is completely optional, and not necessary to use Fitbit. +

+ +

+ You can turn this off anytime from your Fitbit settings. +

+ +

+ If you do not agree, your data will not be used to research and develop new products and services or to support health research. +

+
+
+ + +
+ +
I Agree
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_3.html b/code/10006/10006_3.html new file mode 100644 index 0000000000000000000000000000000000000000..d8046522f9aa6f750ca1bdbab2444540196fc938 --- /dev/null +++ b/code/10006/10006_3.html @@ -0,0 +1,240 @@ + + + +Fitbit Profile Info UI + + + +
+ +
+
10:03
+
+ + + + + + + + + + + + +
+
+ + +
+
👤
+ +
Add Fitbit profile info
+ +
+ Your profile info helps personalize some metrics, like stride length and speed. To choose who sees this info, go to sharing settings in your Account > Social & Sharing > Privacy. +
+ +
Your profile info
+ +
+
+
Height
+
172 cm
+
+
+
Weight
+
60 kg
+
+
+ +
+
Sex
+ +
+ +
+ Fitbit uses sex to calculate metrics like calories burned, and to provide reference points you can use for comparison +
+
+ + +
+ +
Save & continue
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_30.html b/code/10006/10006_30.html new file mode 100644 index 0000000000000000000000000000000000000000..3cf1344f110383ed26152605b3a8d01ce2b2fed3 --- /dev/null +++ b/code/10006/10006_30.html @@ -0,0 +1,211 @@ + + + + +Email and notification preferences + + + +
+ + +
+
10:16
+
+
+
+
+
+ +
+ + + + + +
Email and notification preferences
+
+ Stay updated on Fitbit products, and get notified about ways to contribute to health research and development +
+ + + +
+
News and Updates
+
+ Never miss out on Fitbit updates, promotions, and useful tips for getting the most out of our products. +
+
+
+ +
+
Research Invites
+
+ Opportunities to participate in research studies. +
+
+
+ + + +
+
Research Invites
+
+ Opportunities to participate in research studies. +
+
+
+
+ +
+
Save & continue
+
+ +
+ + \ No newline at end of file diff --git a/code/10006/10006_31.html b/code/10006/10006_31.html new file mode 100644 index 0000000000000000000000000000000000000000..199f497cebb0dfbd79170b4f6ec1bcf2ad2a3cdc --- /dev/null +++ b/code/10006/10006_31.html @@ -0,0 +1,178 @@ + + + +Setup Screen + + + +
+ +
+
+
10:17
+
+ + + + + + + + + + + + +
+
+
What are you setting up?
+
+ + +
+
+ + +
+ + + + + + + + + + + + + +
+
MobileTrack
+
Track steps with my phone
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_33.html b/code/10006/10006_33.html new file mode 100644 index 0000000000000000000000000000000000000000..5bac05af0b6f51c9926ec08c1a8bdf3260244612 --- /dev/null +++ b/code/10006/10006_33.html @@ -0,0 +1,183 @@ + + + +Fitbit Onboarding Mock + + + +
+ + +
+
10:19
+
+ +
+ + + +
+
+ + + + +
+
+
+ + +
Nice.
+
You are now on your way to better health.
+ + +
+
[IMG: Phone with Fitbit dashboard]
+
+ + +
+
SEE WHAT FITBIT TRACKERS CAN DO
+
SET UP YOUR PHONE
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_34.html b/code/10006/10006_34.html new file mode 100644 index 0000000000000000000000000000000000000000..ab0cb1e92cf3f2f6e143028d77d2d5277e4cef2a --- /dev/null +++ b/code/10006/10006_34.html @@ -0,0 +1,222 @@ + + + +Fitbit Setup - Please Wait + + + +
+ + +
+
10:19
+
+
+ + + + +
+
+ + + + + + +
+
+
+ + +
Nice.
+
You are now on your way to better health.
+ + +
[IMG: Phone screen showing Fitbit app]
+ + + + + +
+
SEE WHAT FITBIT TRACKERS CAN DO
+
SET UP YOUR PHONE
+
+ + + + +
+ + \ No newline at end of file diff --git a/code/10006/10006_35.html b/code/10006/10006_35.html new file mode 100644 index 0000000000000000000000000000000000000000..07b025fcfa77392bc6dbb3266884cd8dea142a16 --- /dev/null +++ b/code/10006/10006_35.html @@ -0,0 +1,130 @@ + + + +Fitbit Permission Dialog UI + + + +
+ + +
+
10:20
+
+
+
+
+
+
+ + + + + + + +
+
+
+ + +
Nice.
+
You are now on your way to better health.
+ +
[IMG: Phone with Fitbit app preview]
+ +
+
SEE WHAT FITBIT TRACKERS CAN DO
+
SET UP YOUR PHONE
+
+ + +
+
+ + + + + + + + +
Allow Fitbit to access your physical activity?
+ +
Allow
+
Don’t allow
+
+ +
+ + \ No newline at end of file diff --git a/code/10006/10006_36.html b/code/10006/10006_36.html new file mode 100644 index 0000000000000000000000000000000000000000..5d5adfd1cbb95c2ca214caead9f06e99b9e03088 --- /dev/null +++ b/code/10006/10006_36.html @@ -0,0 +1,113 @@ + + + +Fitbit Onboarding Modal + + + +
+ +
+
10:20
+
+
Calm
+
+
+ +
+
+ +
+
+
+ + +
Nice.
+
You are now on your way to better health.
+ + +
[IMG: Phone showing Fitbit app dashboard]
+ + + + + +
+
SEE WHAT FITBIT TRACKERS CAN DO
+
SET UP YOUR PHONE
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_38.html b/code/10006/10006_38.html new file mode 100644 index 0000000000000000000000000000000000000000..788987e174f04b6e2c2e3bf0fee7623d690a1249 --- /dev/null +++ b/code/10006/10006_38.html @@ -0,0 +1,203 @@ + + + +Permission Request - Fitbit + + + +
+ + +
+
10:21
+
+ Calm + +
+
+
+
+ + +
+ + + +
+ + +
Permission Request
+ + +
[IMG: Illustration - Person with fitness band holding phone with checkmark]
+ + +
Allow Fitbit to send notifications?
+ + +
+ You can get notifications from Fitbit when you hit goal milestones, earn badges, get friend requests, and more. +
+ +
+ To get notifications, tap Set permissions and choose Allow. + You can also update these permissions from your phone's settings. +
+ + +
SET PERMISSIONS
+ + +
+
+ + \ No newline at end of file diff --git a/code/10006/10006_39.html b/code/10006/10006_39.html new file mode 100644 index 0000000000000000000000000000000000000000..b0c6904d8d00994ac9831740e00f55cb0041b038 --- /dev/null +++ b/code/10006/10006_39.html @@ -0,0 +1,224 @@ + + + + +Permission Request - Mock + + + +
+ +
+
10:22
+
+
+
+
+
+
+ +
+
+
Permission Request
+
+ +
[IMG: Cartoon person with smartwatch holding a phone]
+ +
SET PERMISSIONS
+
+ + +
+
+
+ + + +
+
+ Allow Fitbit to send you
notifications? +
+
+
Allow
+
Don’t allow
+
+
+
+ + \ No newline at end of file diff --git a/code/10006/10006_4.html b/code/10006/10006_4.html new file mode 100644 index 0000000000000000000000000000000000000000..41515733778ba361989395d2a64daa5475b31c60 --- /dev/null +++ b/code/10006/10006_4.html @@ -0,0 +1,170 @@ + + + + +Fitbit Height Dialog Mock + + + +
+ + +
+
10:03
+
+ + + +
+
+ +
+
👤
+
Add Fitbit profile info
+
+ Your profile info helps personalize some metrics like calories and stride length. + You can change this later in Settings. +
+ +
Height
+
Something else
+
+ +
Save & continue
+ + +
+
+

Height

+
Fitbit uses height to estimate calories and stride length
+ +
+
CM
+
FEET
+
+ +
+
171 cm
+
+
172
+
+
173 cm
+
+ +
+
+ +
OK
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10006/10006_40.html b/code/10006/10006_40.html new file mode 100644 index 0000000000000000000000000000000000000000..a4d4ca6e38c2fe1338b32f5f024caf129ab0939f --- /dev/null +++ b/code/10006/10006_40.html @@ -0,0 +1,354 @@ + + + +Fitbit Mock UI + + + +
+ + +
+
+
10:22
+
+ + + +
+
+
+
+
+
+
+ + +
+
+ + + +
+
fitbit
+
+ + + + +
+
C
+
+ + +
+
+ + + + + + +
We’re here for you
+
+

We’re offering Fitbit Premium to help you stay active at home, eat healthy, sleep better & manage stress.

+
×
+
GET STARTED
+
+ + +
+ + +
+
+ + + +
+
TODAY
+
EDIT
+
+ + +
+
+
+
+
1
+
Steps
+
+
+
+ + +
+
+
+
+
+
0
+
Km
+
+
+
+
+
+
1,376
+
Cals
+
+
+ + +
+
🧠
+
+
Track your mindfulness
+
5 days left this week
+
+
+ +
+
🏃
+
+
Track your exercise
+
+
+ +
+ + +
+ + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10006/10006_6.html b/code/10006/10006_6.html new file mode 100644 index 0000000000000000000000000000000000000000..9e8a53bf7e4b3c6e937d7040c26842e97a6ffee9 --- /dev/null +++ b/code/10006/10006_6.html @@ -0,0 +1,288 @@ + + + +Fitbit Height Modal Mock + + + +
+ + +
+
10:04
+
+
+
+
+
+
+ + +
+
👤
+
Add Fitbit profile info
+
+ Your profile info helps personalize some metrics. You can update these later in settings. +
+ +
Height
+
Sex
+
+ + + + +
+ + +
+

Height

+
Fitbit uses height to estimate calories and stride length
+ +
+
CM
+
FEET
+
+ +
+
+
+
+
167 cm
+
168 cm
+
169 cm
+
+
+ +
+
Cancel
+
OK
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10007/10007_0.html b/code/10007/10007_0.html new file mode 100644 index 0000000000000000000000000000000000000000..8453534eeee7a48e33623ea9ae2fa46a7dd7c750 --- /dev/null +++ b/code/10007/10007_0.html @@ -0,0 +1,244 @@ + + + + +Weather App Mock + + + +
+ +
+ 9:58 +
+
• ◤ ◉ ⌁
+
+ +
+ +
+
+
+
+ + + + + + + + +
+
+
+
+ + + +
+
+ + + + +
+
+
+ +
+
87°F
+ +
+
+ +
+
+ + + + +
+
Bandhwari Haryana, IN
+
+ +
+
+ +
Currently: 9:58 AM
+ +
+
+
[IMG: Sunny icon]
+
[IMG: Wind gauge]
+
[IMG: Umbrella]
+
+ +
+

Sunny

+

Cloud cover: 5%

+

Gentle breeze W
13 mp/h Gusts: 25 mp/h
Prob. precipitation: 11%

+

Feels like: 96°
Max: 93° Min: 82°
Humidity: 68%

+
+ +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + + + +
+
+
+ +
+
+
[IMG: Sun + Cloud + Raindrop]
+
From 12:00 PM
89° Scattered rain
+
+ +
+
+
+
[IMG: Sun + Cloud]
+
Tomorrow, Tuesday 8 August
93° / 82° Partly Cloudy
+
+ +
+
+
+
+ +
+ Get the PRO version! + Remove the ads +
+ +
+
+ + \ No newline at end of file diff --git a/code/10007/10007_1.html b/code/10007/10007_1.html new file mode 100644 index 0000000000000000000000000000000000000000..68233d0e46927248ac55a6600ee04f69a5d9dc12 --- /dev/null +++ b/code/10007/10007_1.html @@ -0,0 +1,150 @@ + + + + + +Mobile UI Mock + + + +
+ +
+
+
10:05
+ +
+ + + + +
+
+ + + + + + + + + + + + + + +
+
+ + + + + + +
+
+ + + + + +
+
+
+
+
+ + + + + + + +
+
+ + + + + + +
+
+
+ + + +
+ + \ No newline at end of file diff --git a/code/10007/10007_10.html b/code/10007/10007_10.html new file mode 100644 index 0000000000000000000000000000000000000000..44fcd9ec88b69781ea67d689d4418755d8e5a98d --- /dev/null +++ b/code/10007/10007_10.html @@ -0,0 +1,217 @@ + + + + + +Windy PRO - Subscription + + + +
+
[IMG: Hot air balloons background]
+
+ +
+
10:09
+
+
+ + + + + +
+
+
+ + + + + +
+
+
+ +
+ + + +
+ +
+
Windy PRO
+

Get access to all weather tools

+
+ +
+
+
+
+
7-day trial
+
Try before you buy
+
+
+
then ₹3,900.00/year
+
₹325.00/month
+
+
+
+ +
+
25% OFF
+
+
+
Special offer
+
+
+
₹2,900.00/year
+
₹241.67/month
+
+
+
+ +
+
+
+
Lifetime
+
Pay only once
+
+
+
₹9,700.00
+
+
+
+
+ +
Start my free week
+ +
+ Auto-renews automatically
Cancel anytime. +
+ +
+
+ + \ No newline at end of file diff --git a/code/10007/10007_11.html b/code/10007/10007_11.html new file mode 100644 index 0000000000000000000000000000000000000000..e0627bd681045dda5090fa8c9d0620394e5c8adb --- /dev/null +++ b/code/10007/10007_11.html @@ -0,0 +1,242 @@ + + + + + +Add Your Spot UI + + + +
+
[IMG: Aerial coast background]
+
+ + +
+
+
10:10
+
+ + + + + + +
+
+ + + + +
+
+ + + + +
+
+
+
+ + + + + + +
+
+ + + + + + +
+
+
+ + +
+ + + + + + + + + + + + +
N
+
S
+
W
+
E
+
+ + +
Add Your Spot
+
Allow Location Services to find your location or open weather map
+ + +
+
Find nearest spot
+
Open weather map
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10007/10007_12.html b/code/10007/10007_12.html new file mode 100644 index 0000000000000000000000000000000000000000..57f02733f9539b794a92a926d37638089f1e7ee5 --- /dev/null +++ b/code/10007/10007_12.html @@ -0,0 +1,294 @@ + + + + + + + + +
+ + +
+
10:11
+
+ + + + + + +
+
+ + +
+
+ mph0 +
+
+ 5101520253035404550 +
+ + +
+ + +
+ +
+ + +
+
+ + + + +
+
+ + + + +
+
+ + + + + + +
+
+ + +
+
+ +
+
28°25'54"N, 77°9'17"E
+ +
+
+ +
+
12 mph
+
13 mph
+
+
Forecast
+
+ + +
+ + + + +
+
+ + + + +
+
+ + + + +
+
+
+ + +
+
+ + + + +
+
GFS27
+
+ + + +
+
+ + +
+ +
+
Google
+ + +
+
+
+
+ +
+
Wed, 16 Aug
+
+
+
02
AM
+
05
AM
+
08
AM
+
11
AM
+
02
PM
+
05
PM
+
08
PM
+
11
PM
+
02
AM
+
+
+
Local (your) time: India Standard Time (GMT+5:30)
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10007/10007_13.html b/code/10007/10007_13.html new file mode 100644 index 0000000000000000000000000000000000000000..1b80fdff9432545fbbb6de0cc519b0de9ebf2bc9 --- /dev/null +++ b/code/10007/10007_13.html @@ -0,0 +1,158 @@ + + + + + +Weather Map UI Mock + + + +
+ + +
+
10:11
+
+ + + + + + + + + + + + + + + + + + + + +Weather App Intro + + + +
+ +
[IMG: Weather Map / Wind Heatmap]
+ + +
+
+
10:06
+
+ +
+ + + + + + + + + + + +
+ + + + + + + + + +
+
+
+ + + + + + + + + + +
+
+ + +
+
+ Best Weather
+ Forecast App for
+ Outdoor +
+
Rated by
+ +
+ +
+ WORLD
+ METEOROLOGICAL
+ ORGANIZATION +
+
+ +
Next
+ +
+ By proceeding, you confirm that you have read the Privacy Policy, + User Agreement and accepted their terms and conditions. + Click to read. +
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10007/10007_3.html b/code/10007/10007_3.html new file mode 100644 index 0000000000000000000000000000000000000000..ddf423522ba8b2a7627035c6858e98a7f03b2474 --- /dev/null +++ b/code/10007/10007_3.html @@ -0,0 +1,188 @@ + + + + + +Weather Depth UI + + + +
+
+
10:06
+
+ + + + + + + + + + +
+
+ +

How deep do you go when you check the weather?

+ +
+
+
+
General
+
I quickly check the essential parameters
+
+
[IMG: Wavy graph - basic]
+
+ +
+
+
Intermediate
+
I review forecasts from several models
+
+
[IMG: Wavy graph - multiple models]
+
+ +
+
+
Advanced
+
Compare multiple weather sources and hyperlocal forecasts
+
+
[IMG: Wavy graph - detailed comparisons]
+
+
+ +
Confirm
+
+
+ + \ No newline at end of file diff --git a/code/10007/10007_4.html b/code/10007/10007_4.html new file mode 100644 index 0000000000000000000000000000000000000000..babe55358ec9a494aaca75eeec41b4572720a388 --- /dev/null +++ b/code/10007/10007_4.html @@ -0,0 +1,207 @@ + + + + + +Weather Depth Preference + + + +
+ +
+
10:07
+
+ + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+ How deep do you go when you check the weather? +
+ + +
+
+
+
General
+
I quickly check the essential parameters
+
+
[IMG: Chart Illustration]
+
+ +
+
+
Intermediate
+
I review forecasts from several models
+
+
[IMG: Multiple Model Waves]
+
+ +
+
+
Advanced
+
Compare multiple weather sources and hyperlocal forecasts
+
+
[IMG: Advanced Multi-Source Lines]
+
+
+ + +
+
Confirm
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10007/10007_5.html b/code/10007/10007_5.html new file mode 100644 index 0000000000000000000000000000000000000000..7331793df19b3dca70a4f13ba86e9f3d9c35e38b --- /dev/null +++ b/code/10007/10007_5.html @@ -0,0 +1,385 @@ + + + + + +Select Your Sport UI + + + +
+ + +
+
10:07
+
+ + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+

Select Your Sport

+

We will personalize the app according to your choice

+
+ + +
+ + +
+
+ + + + + + + + + +
+
Boating
+
+ + +
+
+ + + + + + + + + +
+
Kitesurfing
+
+ + +
+
+ + + + + + + + + +
+
Windsurfing
+
+ + +
+
+ + + + + +
+
Surfing
+
+ + +
+
+ + + + + +
+
Fishing
+
+ + +
+
+ + + + + + + +
+
Drones
+
+ + +
+
+ + + + + + +
+
Bicycling
+
+ + +
+
+ + + + + + +
+
Paragliding
+
+ + +
+
+ + + + + + + +
+
Kayaking
+
+ + +
+
+ + + + + + +
+
Winter sports
+
+ + +
+
+ + + + + + +
+
SUP
+
+ + +
+
+ + + + + +
+
Diving
+
+ + +
+
+ + + + + + +
+
Foiling
+
+ + +
+
+ + + + + + +
+
Running
+
+ + +
+
+ + + + + + +
+
Other
+
+ +
+ + +
Select
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10007/10007_6.html b/code/10007/10007_6.html new file mode 100644 index 0000000000000000000000000000000000000000..0eedd154f378b8045d9d1ae2175d14b2b7e838d0 --- /dev/null +++ b/code/10007/10007_6.html @@ -0,0 +1,384 @@ + + + + +Select Your Sport + + + +
+ + +
+
10:08
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+

Select Your Sport

+

We will personalize the app according to your choice

+
+ + +
+ +
+
+ + + + + + + + + +
+
Boating
+
+ + +
+
+ + + + + + + + +
+
Kitesurfing
+
+ + +
+
+ + + + + + + + + + +
+
Windsurfing
+
+ + +
+
+ + + + + +
+
Surfing
+
+ + +
+
+ + + + + +
+
Fishing
+
+ + +
+
+ + + + + + + +
+
Drones
+
+ + +
+
+ + + + + + +
+
Bicycling
+
+ + +
+
+ + + + + + +
+
Paragliding
+
+ + +
+
+ + + + + + +
+
Kayaking
+
+ + +
+
+ + + + + +
+
Winter sports
+
+ + +
+
+ + + + + + +
+
SUP
+
+ + +
+
+ + + + + + +
+
Diving
+
+ + +
+
+ + + + + + +
+
Foiling
+
+ + +
+
+ + + + + + +
+
Running
+
+ + +
+
+ + + + + + + +
+
Other
+
+
+ + +
Select
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10007/10007_7.html b/code/10007/10007_7.html new file mode 100644 index 0000000000000000000000000000000000000000..592efe7004ce65addf0e3146350278cd91d347dc --- /dev/null +++ b/code/10007/10007_7.html @@ -0,0 +1,260 @@ + + + + + + + + +
+ +
+
10:08
+
+ + + + + + + + + + + + + + + + + + + +
+
+ + +
Permissions
+
Grant Windy.app permissions for an optimal experience
+ + +
+
+
+
+ + + + + + +
+
+
Push notifications
+
Never miss great conditions or important updates
+
+
+
+
+ +
+
+
+ + + + + + +
+
+
Location
+
Instantly see weather for your location and view spots nearby
+
+
+
+
+
+ + +
+
Skip
+
Allow all
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10007/10007_8.html b/code/10007/10007_8.html new file mode 100644 index 0000000000000000000000000000000000000000..647fe22834229d41de728a8dcff53ec9e4dd3a57 --- /dev/null +++ b/code/10007/10007_8.html @@ -0,0 +1,143 @@ + + + + + + + + +
+ +
+
10:08
+
+ +
+
+ +
+

Permissions

+

Grant Windy.app permissions for an optimal experience

+
+ +
+
+
+
+
+ +
+
+ + + +
+ +

Allow Windy.app to access this device’s location?

+ +
+
[IMG: Precise map]
+
[IMG: Approximate map]
+
+ +
+
Precise
+
Approximate
+
+ +
+
While using the app
+
Only this time
+
Don’t allow
+
+
+ + + +
+ +
+ + \ No newline at end of file diff --git a/code/10007/10007_9.html b/code/10007/10007_9.html new file mode 100644 index 0000000000000000000000000000000000000000..6eaed5b863f966c3ac7457037741ce708a323374 --- /dev/null +++ b/code/10007/10007_9.html @@ -0,0 +1,259 @@ + + + + + +Permissions Screen + + + +
+ + +
+
10:09
+
+
+ + +
+
+ + + + + +
+
+ + +
+
+ + + + + +
+
+ + + + + + +
+
+
+ + +
Permissions
+
Grant Windy.app permissions for an optimal experience
+ + +
+
+
+ + + + + +
+
+
Push notifications
+
Never miss great conditions or important updates
+
+
+
+ +
+
+ + + + + + +
+
+
Location
+
Instantly see weather for your location and view spots nearby
+
+
+ + + +
+
+
+ + +
+
Skip
+
Allow all
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/1001/1001_0.html b/code/1001/1001_0.html new file mode 100644 index 0000000000000000000000000000000000000000..167a10bb681f04cc15551ef12d5a915977cb47d4 --- /dev/null +++ b/code/1001/1001_0.html @@ -0,0 +1,243 @@ + + + + + +Mobile Photo Viewer Mock + + + +
+ +
+
6:08
+
+ + + + + + + + + + + + + + + + 100% +
+
+ + +
+
+
+ + + +
+
+
+
+ + + +
+
+ + + + + +
+
+
+ +
+ + +
[IMG: Landscape Photo]
+ + +
+
+
+ + + + + + + +
+
Share
+
+
+
+ + + + + + + + + + +
+
Auto
+
+
+
+ + + + +
+
Edit
+
+
+
+ + + + + + + +
+
Trash
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/1001/1001_10.html b/code/1001/1001_10.html new file mode 100644 index 0000000000000000000000000000000000000000..3e0bff4e3d9b3fb030466a75f2f85f1aa1367928 --- /dev/null +++ b/code/1001/1001_10.html @@ -0,0 +1,246 @@ + + + + + +Gallery Permission Prompt + + + +
+ + +
+
6:15
+
+ + + +
+ + 100% +
+
+
+ + +
+
×
+
2
+
+ + +
+
September
+
+
+
[IMG: Yellow water bottle]
+
+
+
[IMG: City view from window]
+
+
+
[IMG: Office plant near window]
+
+ +
+
+
+
[IMG: Plants on white pot]
+
+
+ +
August
+
+
+
[IMG: Whiteboard with small UI]
+
+
+
[IMG: Line sketch]
+
+
+
[IMG: Red scribble]
+
+
+ +
July
+
+
+
[IMG: Landscape view]
+
+
+
[IMG: Plant close-up]
+
+ +
+
+
+
[IMG: Desk snapshot]
+
+
+
+ + +
+
+ + Copy +
+
+ + Move +
+
+ + +
+
Allow Gallery to modify 2 photos?
+
+
+
[IMG: Plant in white pot]
+
+
+
[IMG: Plant near window]
+
+
+
+
Deny
+
Allow
+
+
+ + + +
+ + \ No newline at end of file diff --git a/code/1001/1001_2.html b/code/1001/1001_2.html new file mode 100644 index 0000000000000000000000000000000000000000..b15a238bf3e7c26dcd32560020847bbb55666633 --- /dev/null +++ b/code/1001/1001_2.html @@ -0,0 +1,280 @@ + + + + + +Gallery Mock + + + +
+ +
+
6:10
+
+ + + + +
+ + +
+ +
100%
+
+
+
+ + +
+
+
+
Gallery
+
+
+ +
+
+ + +
+
+ + Favourites +
+
+ + Trash +
+
+ + +
+ +
+ + +
+ +
+
[IMG: Camera Folder Thumbnail]
+
Camera
+
5 items · 84 MB
+
+ + +
+
[IMG: Screenshots Preview]
+
Screenshots
+
1 item · 86 kB
+
+ + +
+
[IMG: Simple Triangle Drawing]
+
Infinite Painter
+
2 items · 135 kB
+
+
+ + +
+
+ +
Photos
+
+
+ +
Folders
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/1001/1001_3.html b/code/1001/1001_3.html new file mode 100644 index 0000000000000000000000000000000000000000..a9cf23046af620f9dbd5237a511700c92f1e6bc0 --- /dev/null +++ b/code/1001/1001_3.html @@ -0,0 +1,236 @@ + + + + + +Folders - Mock UI + + + +
+ + +
+
6:11
+
+ + 🔔 + 🔍 + 📶 + 🔋 100% +
+
+ + +
+
+ + Gallery +
+
+ + +
+ + Favourites +
+ + +
+
+
[IMG: Yellow Bottle on Desk]
+
Camera
+
5 items · 84 MB
+
+ +
+
[IMG: Screenshots Placeholder]
+
Screenshots
+
1 item · 86 kB
+
+ +
+
[IMG: Triangle Sketch]
+
Infinite Painter
+
2 items · 135 kB
+
+
+ + + + + +
+ + +
+ + +
+
+ + \ No newline at end of file diff --git a/code/1001/1001_4.html b/code/1001/1001_4.html new file mode 100644 index 0000000000000000000000000000000000000000..4ecf0e8542175dadad872fb2e9447498ca0a6341 --- /dev/null +++ b/code/1001/1001_4.html @@ -0,0 +1,204 @@ + + + + + +New folder + + + +
+ + +
+
6:12
+
+ + + + +
+ + + + + + 100% +
+
+
+ + +
+
+ + + +
+
New folder
+
+ + +
+
+
Folder name
+
+
+
+ + +
+ + +
+ + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/1001/1001_5.html b/code/1001/1001_5.html new file mode 100644 index 0000000000000000000000000000000000000000..809d943497cd40732f98e8671dab0e7f0ad6c8d4 --- /dev/null +++ b/code/1001/1001_5.html @@ -0,0 +1,329 @@ + + + + + +New folder - Mock + + + +
+ + +
+
6:12
+
+ + 100% + +
+
+ + +
+ +
New folder
+
+ + +
+
+
Folder name
+ +
+
+ + +
+ + +
+ + +
+
+
+
😊
+
GIF
+
⚙️
+
G⇄
+
🎨
+
+ + + +
+
+ +
+
+
q
w
e
r
+
t
y
u
i
+
o
p
+
+
+
a
s
d
f
+
g
h
j
k
l
+
+
+
+ + + +
+
z
x
c
v
+
b
n
m
+
+ + + + +
+
+
+
?123
+
,
+
+ + + +
+
space
+
.
+
+ + + + +
+
+
+
+ + +
+ + \ No newline at end of file diff --git a/code/1001/1001_7.html b/code/1001/1001_7.html new file mode 100644 index 0000000000000000000000000000000000000000..50d4952d5fc87fdb3993dedbdec4995c3a51185c --- /dev/null +++ b/code/1001/1001_7.html @@ -0,0 +1,299 @@ + + + + + +Select items - Gallery + + + +
+ + +
+
6:14
+
+ + + +
+ 100% +
+
+
+
+ + +
+
+ +
+
Select items
+
+ + +
+ +
+

September

+
+ +
+
[IMG: Video - Yellow bottle on desk]
+
+
+ + 0:12 +
+
+
+
[IMG: View from high-rise window]
+
+
+
+
[IMG: Indoor plant by window]
+
+
+
+
[IMG: Green plants in planter]
+
+
+
+
+ +
+

August

+
+
+
[IMG: Document/Screenshot]
+
+
+
+
[IMG: Triangle drawing]
+
+
+
+
[IMG: Heart doodle]
+
+
+
+
+ +
+

July

+
+
+
[IMG: Landscape view]
+
+
+
+
+ +
+ + +
+
+ + Copy +
+
+ + Move +
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/1001/1001_8.html b/code/1001/1001_8.html new file mode 100644 index 0000000000000000000000000000000000000000..b96d3ee8500b81dfbc2afe9d467ca2c845aa7361 --- /dev/null +++ b/code/1001/1001_8.html @@ -0,0 +1,191 @@ + + + + + +Gallery Select Mock + + + +
+ + +
+
6:14
+
+ + + + +
+ + + + + + 100% +
+
+
+ + +
+
×
+
1
+
+ + +
+
September
+
+ +
+
[IMG: Yellow bottle on desk - Video]
+
+
+ + 0:12 +
+
+
+
[IMG: Landscape from window]
+
+
+
+
[IMG: Indoor plant by window]
+
+
+
+
[IMG: Green plants in white planter]
+
+
+
+ +
August
+
+
+
[IMG: Light gray screenshot]
+
+
+
+
[IMG: Triangle line drawing]
+
+
+
+
[IMG: Red heart drawing]
+
+
+
+ +
July
+
+
+
[IMG: Distant landscape view]
+
+
+
+
+ + +
+ + +
+ + + +
+ + \ No newline at end of file diff --git a/code/1001/1001_9.html b/code/1001/1001_9.html new file mode 100644 index 0000000000000000000000000000000000000000..4e180dfca36052679f012f8cf209046687bde6f3 --- /dev/null +++ b/code/1001/1001_9.html @@ -0,0 +1,239 @@ + + + + + +Gallery Selection + + + +
+ + +
+
6:14
+
+
+ +
+
+ +
+
+
+ + + + +
+
100%
+
+
+
+ + +
+
+ + + +
+
2
+
+ + +
+
September
+
+
+
[IMG: Yellow bottle on desk]
+
+ +
+
+
+ 0:12 +
+
+
+
[IMG: Aerial landscape photo]
+
+ +
+
+
+
[IMG: Plant by window]
+
+ +
+
+
+
[IMG: Indoor plants in white planter]
+
+ +
+
+
+ +
August
+
+
+
[IMG: Blurred note screenshot]
+
+ +
+
+
+
[IMG: Triangle sketch]
+
+ +
+
+
+
[IMG: Heart doodle]
+
+ +
+
+
+ +
July
+
+
+
[IMG: Landscape view from window]
+
+ +
+
+
+
+
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/code/10011/10011_0.html b/code/10011/10011_0.html new file mode 100644 index 0000000000000000000000000000000000000000..667d72f56da8b3de2c696cf7b84473197b1c6669 --- /dev/null +++ b/code/10011/10011_0.html @@ -0,0 +1,255 @@ + + + + + +Reminder UI + + + +
+
+
+
+
12:36
+ + + + + +
+
+ + + + + + + + + + +
+
+ +
+
+ +
+ + + +
+
Reminder
+
+
+ + + + + + + + + + + + +
+
+ +
+
All
+
Critical
+
Important
+
Favorites
+
Optional
+
+
+ +
+
+
+
client meeting
+
09/30/2023 1:00 PM
+
Every Day
+
+
+ +
+ + + +
+ +
+
ACTIVE
+
COMPLETED
+
+ +
+
+
+ + \ No newline at end of file diff --git a/code/10011/10011_1.html b/code/10011/10011_1.html new file mode 100644 index 0000000000000000000000000000000000000000..72e7046fbbefa1c0b79c3301366b85f476abda03 --- /dev/null +++ b/code/10011/10011_1.html @@ -0,0 +1,308 @@ + + + + +Reminder UI + + + +
+ +
+ +
+
+ 12:36 + + + + + + +
+
+ + + + + + + + + + + + + + + +
+
+ + +
+
+
+ + + +
+
Reminder
+
+
+
+ + + + +
+
+ + + +
+
+
+ + +
+
All
+
Critical
+
Important
+
Favorites
+
Optional
+
+
+ + +
+
+
Brother´s birthday
+
09/28/2023  8:00 PM
+
Every Day
+
+
Today
+
+ + + +
+
+
+ +
+
Mom's anniversary
+
10/5/2023  12:00 AM
+
One Time
+
+
in 7 days
+
+
+
+ + +
+
+ + +
+
ACTIVE
+
COMPLETED
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10013/10013_0.html b/code/10013/10013_0.html new file mode 100644 index 0000000000000000000000000000000000000000..cb45b3b87ccde61bf681f3bf059a642d7c2aa877 --- /dev/null +++ b/code/10013/10013_0.html @@ -0,0 +1,463 @@ + + + +AccuWeather Mock + + + +
+ + +
+
8:18
+
+
+
+
+
+
+
+
+ + +
+
+ + + +
+
+
AccuWeather
+
Orléans, FR
+
+
GET PREMIUM+
+
+ + +
+
EXCLUSIVE ACCUWEATHER MINUTECAST
+
No precipitation for at least 60 min
+
+ + +
+
NOW
+
+
+
+ + + + + + + + + + + + +
64°F
+
+
RealFeel 63°
+
+ See 4 Hours + + + +
+
+
+ +
Updated minute-by-minute as of 8:15 PM
+
+
+
+
+ + +
+
+
AFTERNOON
+ + + + +
66°
+
RealFeel 65°
+
+
+
TONIGHT
+ + + +
41°
+
RealFeel 42°
+
+
+
SUN
+ + + + + + + + + + + +
72°
+
RealFeel 72°
+
+
+ + +
+ + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10013/10013_2.html b/code/10013/10013_2.html new file mode 100644 index 0000000000000000000000000000000000000000..9a8b614707c772804f61b04e94ad78722a3c45d1 --- /dev/null +++ b/code/10013/10013_2.html @@ -0,0 +1,230 @@ + + + +Settings Screen + + + +
+ + +
+
+
8:19
+
+
+
+
+
+
+
+
+
+
+
+ + + + + +
+ + +
+
UNITS
+
+
+
Imperial
+
°F, mph, in
+
+
+
Metric
+
°C, km/h, mm
+
+
+
Hybrid
+
°C, mph, mm
+
+
+
+ + +
+
WIND DIRECTION
+
+
+
Cardinal
+
N, S, W, E
+
+
+
Degrees
+
0° – 360°
+
+
+
+ + +
+
DISPLAY MODE
+
+
+
Light
+
+
+
Dark
+
+
+
Black
+
+
+
+ + +
+
+
+
Use Device Settings
+
+
+
+
+
+ Enable the Light or Dark selection located in your device's Display & Brightness settings +
+
+ +
+
+
Current Conditions Background
+
+
+
+
+
+ Enable/disable the background on your Today screen to visually reflect the weather in your selected location. That means if it’s raining outside, it’s raining in the app. +
+
+
+ + + + +
+ + +
+
+ + \ No newline at end of file diff --git a/code/10013/10013_3.html b/code/10013/10013_3.html new file mode 100644 index 0000000000000000000000000000000000000000..a45c9f02db98e71cad119b79df068412ba4589ca --- /dev/null +++ b/code/10013/10013_3.html @@ -0,0 +1,253 @@ + + + +Notifications UI + + + +
+ + +
+
8:20
+
+
+
+
+
+
+
+
+ + +
+
+ + + +
+

Notifications

+
+ +
+ +
+
+
AccuWeather Alerts™
+
+ PREMIUM+ + + + + + + +
+
+
The most advanced severe weather notifications available.
+
+ + +
+
+
Government Alerts
+
+
ON
+ + + +
+
+
Standard watches and warnings that include a map outlining impacted areas and links to more information.
+
+ ORLÉANS, FR +
+
+ + +
+
+
Weather News
+
+
ON
+ + + +
+
+
The latest in weather-related news, sports, astronomy, and more.
+
+
Top Stories
+
Astronomy
+
Air Quality/Allergy
+
Sports
+
+
+ + + + + +
+
System Preferences
+ + + +
+ + +
+
Persistent Notification
+
+
ON
+ + + +
+
+ +
+ +
+ + \ No newline at end of file diff --git a/code/10013/10013_4.html b/code/10013/10013_4.html new file mode 100644 index 0000000000000000000000000000000000000000..5968a66bb6f5f2960cd324d0214bed4b70ba2edd --- /dev/null +++ b/code/10013/10013_4.html @@ -0,0 +1,238 @@ + + + +Government Alerts UI + + + +
+ + +
+
+
8:21
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ +
+
Government Alerts
+
+ + +
Switch on locations to receive notifications.
+ + +
+
+
+
+ +
+
+
Current Location
+
+
+
+
+
+
+
+ + +
FAVORITES
+ + +
+
+
+
Orléans
+
France
+
+
+
+
+
+
+ + +
+
+
+
Tokyo
+
Japan
+
+
+
+
+
+
+ + +
+
+
Edit Locations
+
+
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10014/10014_0.html b/code/10014/10014_0.html new file mode 100644 index 0000000000000000000000000000000000000000..0c203b4dcd875cec83c7421b5ada0f41a17a24fd --- /dev/null +++ b/code/10014/10014_0.html @@ -0,0 +1,286 @@ + + + + + +Mail Inbox - Dark + + + +
+ +
+
8:35
+
+
+
+
+
+
+ + +
+
+ +
+
Search in mail
+
N
+
+ + +
+
Primary
+ +
+ +
+
+ +
+
+
+
Promotions
+
+
eBay
+
+
+ + +
+
[IMG: M avatar]
+
+
+
+
me, Mail
+
2
+
+
Oct 12
+
+
All Recipes App
+
Address not found Your message wasn't deli...
+
+
+
+
+
+ + +
+
[IMG: eBay avatar]
+
+
+
eBay
+
Oct 12
+
+
Recently viewed: New Twin Tubs Washing M...
+
Give it another look
+
+
+
+
+
+
+ + +
+
[IMG: User avatar]
+
+
+
Kitchen Stories
+
Oct 11
+
+
Welcome to Kitchen Stories!
+
Thank you for signing up. Let's get cooking...
+
+
+
+
+
+ + +
+
[IMG: eBay avatar]
+
+
+
eBay
+
Oct 11
+
+
Recently viewed: Woman K-Swiss ST329...
+
Give it another look
+
+
+
+
+
+
+ + +
+
[IMG: eBay avatar]
+
+
+
eBay
+
Oct 10
+
+
K-Swiss Women's Sneakers K-Swiss Cou...
+
They have 99.6% positive feedback
+
+
+
+
+
+ + +
+
[IMG: eBay avatar]
+
+
+
eBay
+
Oct 9
+
+
Your discount on 11 Pro+ 5G 8/256Gb... h...
+
Buy it now for $517.13
+
+
+
+
+
+ + +
+
[IMG: eBay avatar]
+
+
+
eBay
+
Oct 6
+
+
You have an offer from the seller, $25.50
+
Tap to view details
+
+
+
+
+
+
+
+ + +
+ + Compose +
+ + +
+ + +
+
+
+ + \ No newline at end of file diff --git a/code/10014/10014_2.html b/code/10014/10014_2.html new file mode 100644 index 0000000000000000000000000000000000000000..1ffb8b6053dead9c6a0a413a6bb48b96928d82ae --- /dev/null +++ b/code/10014/10014_2.html @@ -0,0 +1,350 @@ + + + + + +Mail List - Dark + + + +
+ + +
+
8:39
+
+ + + + + + + + + + + + + + + + + + + + +
+
+ + +
+ +
+ +
Primary
+ +
+ + +
+
+ +
+
+
Promotions
+
eBay
+
+
+ + + + + + + + + + + + + + + + + + + +
+ + +
+ +
Compose
+
+ + +
+
1 deleted
+
Undo
+
+ + +
+ + + +
+ +
+
+ + \ No newline at end of file diff --git a/code/10016/10016_1.html b/code/10016/10016_1.html new file mode 100644 index 0000000000000000000000000000000000000000..213b57172e9e326146ee8dd44fcee5588b0658b4 --- /dev/null +++ b/code/10016/10016_1.html @@ -0,0 +1,236 @@ + + + + + +Ebook Carousel UI + + + +
+ + +
+
11:04
+
+ + + + +
+
+ + +
+
+
+ +
+
+
+
+ +
+
Aa
+
+ +
+
+
+ + + + + +
+
+
+ + + + + + +
+ +
+
+
+
+
+ +
4 / 16
+
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10455/10455_6.html b/code/10455/10455_6.html new file mode 100644 index 0000000000000000000000000000000000000000..3b2c7a6dcea0898eb9b7143a2e7e7ed9cf9f06ec --- /dev/null +++ b/code/10455/10455_6.html @@ -0,0 +1,445 @@ + + + + + +Booking Flights UI Mock + + + +
+ + +
+
+
+ + + +
+
+ + + + +
1
+
+
+ +
Booking.com
+ +
+
+ + + + + Stays +
+
+ + + + Flights +
+
+ + + + + Car rental +
+
+ + + + + Taxi +
+
+
+ + +
+
+
+
Round-trip
+
One-way
+
Multi-city
+
+
+ +
+
+
+ + + +
+
New York · All airports
+
+ + + + +
+
+
+
+
+ + + +
+
BVA Beauvais–Tillé Airport
+
+
+ +
+
+
+ + + + +
+
Sat, Sep 30 - Sat, Oct 07
+
+
+ +
+
+
+ + + + +
+
1 adult, Economy
+
+
+ +
Search
+
+ + +
+
+
Direct flights only
+
+
+ +
Nearby options for tonight
+ +
+
+
[IMG: Hotel Room]
+
Cozy room with amenities
+
+
+
[IMG: Hotel Room]
+
Studio near city center
+
+
+
+ + +
+ + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10455/10455_7.html b/code/10455/10455_7.html new file mode 100644 index 0000000000000000000000000000000000000000..46c99eb17a40e8512120d1db7d0030175671e55b --- /dev/null +++ b/code/10455/10455_7.html @@ -0,0 +1,267 @@ + + + + +Airport Search UI Mock + + + + +
+ + +
+
+
3:32
+
25°
+
+ + + + +
+
+ +
+
+
+
+ + + +
+
+
+
+ +
+
Cancel
+
+
+ + +
Where to?
+ + +
+
+ BVA + Paris + × +
+
+
+ Add another airport +
+
+ +
Select multiple airports at once and compare flights
+ +
+ +
+
Included in your search (1)
+
+ + + +
+
+ +
Your recent searches
+ +
+ +
+
+ + + + +
+
+
New York · All airports
+
New York State, United States
+
+
+
+ + +
+
+ + + +
+
+
BVA Beauvais–Tillé Airport
+
Paris, Ile de France, France
+
+
+
+ + +
+
+ + + +
+
+
CUN Cancún International Airport
+
Cancún, Quintana Roo, Mexico
+
+
+
+ + +
+
+ + + + +
+
+
New York · All airports
+
New York State, United States
+
+
+
+
+ + +
+
+
GIF
+
🙂
+
+
+
🎨
+
🎤
+
+ +
+
+
q
w
e
r
t
+
y
u
i
o
p
+
+
+
a
s
d
f
g
+
h
j
k
l
+
+
+
+
z
x
c
v
b
+
n
m
+
+
+
+ +
+
?123
+
,
+
🙂
+
+
.
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10455/10455_8.html b/code/10455/10455_8.html new file mode 100644 index 0000000000000000000000000000000000000000..e3fa4e25d6fc074ef06e48ab2c58eaa441c3b935 --- /dev/null +++ b/code/10455/10455_8.html @@ -0,0 +1,264 @@ + + + + +Where to? Search UI + + + +
+ + +
+
+
3:33
+ + + + + + + + + + + + +
+
+
+ + + + + + + + +
+
+ + + Cancel + + +
+
Where to?
+ +
Airport or city
+
Select multiple airports at once and compare flights
+ +
+ +
Your recent searches
+ + +
+
+ + + + +
+
+
New York · All airports
+
New York State, United States
+
+
+
+ + +
+
+ + + +
+
+
BVA Beauvais–Tillé Airport
+
Paris, Ile de France, France
+
+
+
+ + +
+
+ + + +
+
+
CUN Cancún International Airport
+
Cancún, Quintana Roo, Mexico
+
+
+
+ + +
+
+ + + + +
+
+
New York · All airports
+
New York State, United States
+
+
+
+ + +
+
+ + + + +
+
+
Phoenix · All airports
+
Arizona, United States
+
+
+
+
+ + +
+
+
+
GIF
+
G
+
+
🎨
+
🎤
+
+ +
+
q
w
e
r
t
+
y
u
i
o
p
+
+
+
a
s
d
f
g
+
h
j
k
l
+
+
+
z
x
c
v
b
+
n
m
+
+ +
+
?123
+
,
+
+
.
+
space
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10455/10455_9.html b/code/10455/10455_9.html new file mode 100644 index 0000000000000000000000000000000000000000..dc61cec98d5301b7817512b359ee65f338c30f7a --- /dev/null +++ b/code/10455/10455_9.html @@ -0,0 +1,397 @@ + + + + + +Flight Search - Where to + + + +
+ + +
+
+
3:33
+
+ + + + + + + + + + + + +
+
+
+
+ + + + + + + + + +
+
+ + +
Cancel
+ + +
+
Where to?
+ + +
Select multiple airports at once and compare flights
+ +
+ +
+ +
+
+ + + +
+
+
Paris · All airports
+
Ile de France, France
+
+
+
+ + +
+
+ + + +
+
+
CDG Paris - Charles de Gaulle Airport
+
23 km from city center
+
+
+
+ + +
+
+ + + +
+
+
ORY Paris - Orly Airport
+
14 km from city center
+
+
+
+ + +
+
+ + + +
+
+
BVA Beauvais–Tillé Airport
+
69 km from city center
+
+
+
+ + +
+
+ + + +
+
+
GND Maurice Bishop International Airport
+
Saint George’s, Saint George Parish, Grenada
+
+
+
+
+
+ + +
+
+
Paris
+
Parish
+
Parisian
+
+
+
+
q
+
w
+
e
+
r
+
t
+
y
+
u
+
i
+
o
+
p
+
+
+
a
+
s
+
d
+
f
+
g
+
h
+
j
+
k
+
l
+
+
+
+
z
+
x
+
c
+
v
+
b
+
n
+
m
+
+
+
+
?123
+
,
+
🙂
+
+
.
+
+
+
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10462/10462_5.html b/code/10462/10462_5.html new file mode 100644 index 0000000000000000000000000000000000000000..f88fbc8b24ab9e25d1e3f20a6aeeebf34a1d6b1f --- /dev/null +++ b/code/10462/10462_5.html @@ -0,0 +1,250 @@ + + + + + +Recipe Search UI + + + +
+ + +
+
1:12
+ +
+ +
+ +
+
ALL
+
MY RECIPES
+
COOKS
+
+
+
+ + +
+
+ +
+
[IMG: Recipe Photo]
+
Pizza
+
+ + + + + +
+
+
[IMG]
+
by ellie36
+
+
+ + +
+
[IMG: Recipe Photo]
+
Bruschetta Pizza
+
+ + + + + +
+
+
[IMG]
+
by ThePioneerWomanRecipes
+
+
+ + +
+
[IMG: Recipe Photo]
+
Pizza
+
+ + + + + +
+
+
[IMG]
+
by AddisonKirk
+
+
+ + +
+
[IMG: Recipe Photo]
+
Pizza Hut Pizza Crust
+
+ + + + + +
+
+
[IMG]
+
by RecipeSource
+
+
+ + +
+
[IMG: Recipe Photo]
+
Pizza
+
+ + + + + +
+
+
[IMG]
+
by HomeChef
+
+
+ + +
+
[IMG: Recipe Photo]
+
Cheesy Pan Pizza
+
+ + + + + +
+
+
[IMG]
+
by CookMaster
+
+
+
+
+ + +
+ + + + + + + + +
+ +
+
+ + \ No newline at end of file diff --git a/code/10462/10462_6.html b/code/10462/10462_6.html new file mode 100644 index 0000000000000000000000000000000000000000..0bd3a1457278f14f7834d3d6886efbad537e536e --- /dev/null +++ b/code/10462/10462_6.html @@ -0,0 +1,390 @@ + + + + + +Recipe UI - Pizza + + + +
+ + +
+
[IMG: Recipe Photo]
+ + +
+ + + +
+ + +
+ + + +
+ + +
+ + + +
+ + +
+ + + + + +
+ + + +
+ + +
+
Pizza
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+
ellie36
+
+
+
+ + + + + +
+
9
+
+
+ + +
+
INGREDIENTS
+
PREPARATION
+
NUTRITION
+
+
+ + +
+
+ + + + + + 2 hr. total +
+
+ + + + + + + 6 Servings ▾ +
+
+ + +
+
Dough, will make 2 (10-12 inch) pizzas
+ +
+
1.75 cups
+
all purpose flour
+
+ +
+
1 cup
+
cake flour
+
+ +
+
2 tsps
+
Sugar
+
+ +
+
1.5 tsps
+
table salt, (not kosher)
+
+ +
+
1.25 tsp
+
instant yeast, or rapid rise
+
+ +
+
1 cup
+
warm water, (110 deg)
+
+
+ + +
+ MY NOTES + + + +
+ + +
MORE IDEAS
+ + +
+ + + + +
+ + + + +
+ + \ No newline at end of file diff --git a/code/10462/10462_7.html b/code/10462/10462_7.html new file mode 100644 index 0000000000000000000000000000000000000000..3494d546415c3028908586127a2654715cfa3f62 --- /dev/null +++ b/code/10462/10462_7.html @@ -0,0 +1,331 @@ + + + + + +Recipe Detail - Pizza + + + +
+ +
+
+
+ + + +
+
+ + + + + +
+
+ +
+ + + +
+
+ + + +
+ +
[IMG: Recipe Hero]
+ +
+
+
+
+
+ +
+
Pizza
+ +
+
+ + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
9
+
+ +
+
[IMG: Avatar]
+
ellie36
+
+
+ +
+
+
INGREDIENTS
+
+
+
PREPARATION
+
NUTRITION
+
+
+ +
+
+ +
2 hr. total
+
+
+ +
6 Servings
+ +
+
+ +
+
Dough, will make 2 (10-12 inch) pizzas
+
1.75 cups
all purpose flour
+
1 cup
cake flour
+
2 tsps
Sugar
+
1.5 tsps
table salt, (not kosher)
+
1.25 tsp
instant yeast, or rapid rise
+
1 cup
warm water, (~105°)
+
+ + +
+
+
+
Folder
+
+
+
+
Note
+
+
+
+
Grocery List
+
+
+
+
Meal Planner
+
+
+ +
+
MY NOTES
+
+ +
+
+
MORE IDEAS
+ +
+
+ + \ No newline at end of file diff --git a/code/10462/10462_8.html b/code/10462/10462_8.html new file mode 100644 index 0000000000000000000000000000000000000000..c8d41870ba11115584b10c7458f0953fe2c9cc2a --- /dev/null +++ b/code/10462/10462_8.html @@ -0,0 +1,411 @@ + + + + +Recipe - Pizza + + + +
+ + +
+
1:13
+
+ + + + + + + + + + + + + + +
+
+ + +
+
[IMG: Recipe Header Photo]
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+ + +
Pizza
+ + +
+
+
ellie36
+
+ + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + +
9
+
+
+ + +
+
INGREDIENTS
+
PREPARATION
+
NUTRITION
+
+
+ + +
+
+ +
2 hr. total
+
+
+ +
6 Servings
+ +
+
+ + +
+

Add to a new folder

+
+
ADD
+ +
Choose an existing folder
+ +
+
+
+ +
+
+
Added
+
0 recipes
+
+
+ +
+
+ +
+
+
Favorites
+
0 recipes
+
+
+ +
+
+ +
+
+
Try
+
0 recipes
+
+
+
+
+ + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10463/10463_4.html b/code/10463/10463_4.html new file mode 100644 index 0000000000000000000000000000000000000000..3394fd836b6baf5f6764901d53d8121c83cadb1f --- /dev/null +++ b/code/10463/10463_4.html @@ -0,0 +1,358 @@ + + + + +Item Detail - Dark UI + + + + +
+ + +
+
+ + + +
+
Item
+
+
+ + + + +
+
+ + + + + +
+
+ + + + +
+
+ + + + + +
+
+
+ + + + + +
+

About this item

+
+
+
Condition
+
New with box
+
+
+
Quantity
+
+ Almost gone +
429 sold
+
+
+
+
Item Number
+
134502910737
+
+ +
+
+
+
Department
+
womens
+
+
+
Brand
+
Skechers
+
+
+
+ + +
+

Item description from the seller

+ +
+ + +
+
+
+

Consider these items

+
Sponsored
+
+ +
+ +
+ +
+
+ + + +
+
[IMG: Black Skechers Shoe]
+
Skechers Arch Fit
+
+ + +
+
+ + + +
+
[IMG: Black Skechers Shoe]
+
Skechers Uno 2
+
+ + +
+
+ + + +
+
[IMG: Grey Nike Air Shoe]
+
Nike Air Jordan Sneaker
+
+
+
+ + +
+ + + + + + + + + + +
+
+ +
+ + \ No newline at end of file diff --git a/code/10465/10465_0.html b/code/10465/10465_0.html new file mode 100644 index 0000000000000000000000000000000000000000..fcafad31bfae11bfa2ee2c14dd971d1c13599855 --- /dev/null +++ b/code/10465/10465_0.html @@ -0,0 +1,263 @@ + + + +Leave Approval - Gmail Thread + + + + +
+ + +
+
2:38
+
+
+
+
+
+
+
+ + +
+
+
+ + + + +
Leave Approval Inbox
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+ +
+
+
+
C
+
+
Cerebra Research 12:44 PM
+
to me + + + +
+
+
+
+ + + + + + + + + + + +
+
+
+ Approve my three days of leave +
+
+ + +
+
+
+
C
+
+
Cerebra Research 2:08 PM
+
to Cerebra + + + +
+
+
+
+ + + + + + + + + + + +
+
+
+ As per Business requirements, your leave cannot be approved for now +
+ + + +
+ On Tue, Aug 8, 2023, 12:44 PM Cerebra Research + <dbwscratch.test.id4@gmail.com> wrote: +
Approve my three days of leave
+
+
+
+ + +
+
+ + + + Reply +
+
+ + + + + Reply all +
+
+ + + + Forward +
+
+ + +
+ + + + +
99
+
+ +
+ + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10465/10465_4.html b/code/10465/10465_4.html new file mode 100644 index 0000000000000000000000000000000000000000..0472c893e231083e8d95f64fa338d6ab8d388d4b --- /dev/null +++ b/code/10465/10465_4.html @@ -0,0 +1,259 @@ + + + +Forward Email UI + + + +
+ + +
+
2:43
+
+ + + + + +
+
+ + +
+ + +
+ Forward + +
+
+ + + + + + +
+
+ + +
+
+
From
+
dbwscratch.test.id8@gmail.com
+
+ +
+
To
+
+ + +
+
+ +
Fwd: OFFICIAL WEEKEND PARTY
+ +
Compose email
+
...
+
+ + +
+
+
+
+
+
GIF
+
+
G↔︎
+
🎨
+
🎤
+
+
+ +
+
+
q
w
e
+
r
t
y
+
u
i
o
p
+
+
+
a
s
d
f
g
+
h
j
k
l
+
+
+
+
z
x
c
v
b
n
m
+
+
+
+
?123
+
@
+
+
+
.
+
+
+
+ +
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10465/10465_5.html b/code/10465/10465_5.html new file mode 100644 index 0000000000000000000000000000000000000000..f58b69bb2ef1bb42a65052aad35479903ec1836d --- /dev/null +++ b/code/10465/10465_5.html @@ -0,0 +1,198 @@ + + + + +Mobile UI - Forward Email + + + +
+ + +
+
2:44
+
+ +
+ +
+
+ +
+
+ +
+
+
+ + +
+
+ +
+
Forward
+
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
+
From
+
dbwscratch.test.id8@gmail.com
+
+
+
To
+
dbwscratch.test.id10@gmail.com
+ +
+ +
+
A
+
+
dbwscratch.test.id10@gmail.com
+
dbwscratch.test.id10@gmail.com
+
+
+ +
Compose body area
+
+ + +
+
+
+
+
+
+
+
+
+
+ +
+
+
q
w
e
r
t
+
y
u
i
o
p
+
+
+
a
s
d
f
g
+
h
j
k
l
+
+
+
z
x
c
v
b
+
n
m
+
+
+
+ +
+
?123
+
@
+
+
+
.
+
+ +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10465/10465_6.html b/code/10465/10465_6.html new file mode 100644 index 0000000000000000000000000000000000000000..4cbca240ab94df96eac345e217df065a5bc070c0 --- /dev/null +++ b/code/10465/10465_6.html @@ -0,0 +1,177 @@ + + + +Gmail Forward Compose - Mock + + + + +
+ + +
+
2:44
+
+ + + + + + +
+
+ + +
+ + +
Forward
+ + + +
+ + + + + +
+
+
+ + +
+
+
From  dbwscratch.test.id8@gmail.com
+
+ +
+
To
+
+
+ +
+ +
+ +
Fwd: OFFICIAL WEEKEND PARTY
+
Compose email
+
...
+
+ + +
+
+
+
+
GIF
+
+
+
🎨
+
🎤
+
+ + +
+
q
w
e
r
t
+
y
u
i
o
p
+
+ +
+
a
s
d
f
g
+
h
j
k
l
+
+ +
+
z
x
c
v
b
+
n
m
+
+
+ +
+
?123
+
@
+
+
+
.
+
+ +
+
+ +
+
+ +
+ + \ No newline at end of file diff --git a/code/10465/10465_7.html b/code/10465/10465_7.html new file mode 100644 index 0000000000000000000000000000000000000000..b0df8d6158fcf582b0967c5ca09979cdcfd3d4ea --- /dev/null +++ b/code/10465/10465_7.html @@ -0,0 +1,301 @@ + + + +Gmail Conversation Mock + + + +
+ + +
+
2:45
+
+
+
+
+
+
+
+ + +
+
+ + + + + +
+
+ +
+ + + + + +
+ +
+ + + + + +
+ +
+ + + + +
+ +
+ + + + + +
+
+
+ + +
+
OFFICIAL WEEKEND PARTY
+
Inbox
+
+ + + + +
+ + +
+ + +
+
C
+
+
+
Cerebra Research
+
1:19 PM
+
+
+ You are invited to the official weekend party this weekend, organized by our company. +
+
+
+ + +
+
C
+
+
+
Cerebra Research
+
2:12 PM
+ + + + +
+
to me ▾
+
+ I don't know anything about +
+ +
+
+ + +
+
That's weird.
+
Oh okay.
+
Ok, thanks for letting me know.
+
+
+ + +
+
Sent
+
Undo
+
+ + +
+
+ + + + + + Mail + 99 +
+
📷
+
+ + + + +
+ + \ No newline at end of file diff --git a/code/10466/10466_0.html b/code/10466/10466_0.html new file mode 100644 index 0000000000000000000000000000000000000000..0cb3ea167e9060338b28840c72daf8379d300256 --- /dev/null +++ b/code/10466/10466_0.html @@ -0,0 +1,386 @@ + + + +Calm App UI - Mockup + + + +
+ + +
+
[IMG: Mountain Lake Landscape]
+ +
+ + + + +
+ +
+ + + + +
+ + +
+ + +
+
Good Morning, Janedbw
+ +
+
+ + + + +
+
+

Start the New Year Right

+

10,000+ sessions for half the price
before January 31st

+
+ + + +
+ +
+
You're feeling:
+
+ + + + + + + + Calm + + + +
+
+ +
For Your Mood
+ + +
+
[IMG: Person stretching indoors] +
+ + + +
+
+
+
Movement • 7 min
+
Daily Move
+
Jan 16 - Wake Up Your Voice
+
+
+ + +
+
[IMG: Nature or activity thumbnail]
+
+
Wisdom • 8 min
+
Breathe with the Morning
+
Start your day with calm focus
+
+
+
+ + +
+ + + + + +
+ +
+
+ + \ No newline at end of file diff --git a/code/10466/10466_1.html b/code/10466/10466_1.html new file mode 100644 index 0000000000000000000000000000000000000000..b607c3d3b8ed6695960291650b5b0a9bf5a32bfe --- /dev/null +++ b/code/10466/10466_1.html @@ -0,0 +1,405 @@ + + + + +Discover Screen + + + +
+ +
+
Discover
+ +
+ + + + +
Title, narrator, artist or topic
+
+
+ +
+
Today's Dailies
+
See All
+
+ +
+ +
+
+ [IMG: Person in Forest] +
+ + + +
+
+
Daily Calm
+
Meditation • Tamara Levitt
+
The Middle Way
+
+ + +
+
+ [IMG: Person Indoors] +
+ + + +
+
+
Daily Jay
+
Wisdom • Jay Shetty
+
Drive With the Radio Off
+
+
+ + +
+
+
+
Start the New Year Right
+
10,000+ sessions for half the price
before January 31st
+
+
+ + + +
+
+ + +
+
+ + + + + +
Dailies
+
+
+ + + +
Meditation
+
+
+ + + + +
Music
+
+ +
+ + + + +
Sleep
+
+
+ + + + +
For Work
+
+
+ + + + +
Kids
+
+
+ + +
+ + + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10466/10466_2.html b/code/10466/10466_2.html new file mode 100644 index 0000000000000000000000000000000000000000..9212a37ff7140a3e1e5d29803bf2fbbd499cda26 --- /dev/null +++ b/code/10466/10466_2.html @@ -0,0 +1,181 @@ + + + + +Discover Screen Mock + + + +
+ +
+
+
+ +
+ +
+ +
+
Category + +
+
Time + +
+
+
+ + + +
    +
  • the grand plan to rise and shine
  • +
  • nature's bliss
  • +
  • sounds of nature
  • +
  • nature
  • +
  • nature bliss
  • +
+ +
+ + + +
    +
  • happiness
  • +
  • anxiety
  • +
  • erik braa
  • +
  • harry styles
  • +
  • rain
  • +
  • soundscapes
  • +
+ + + + +
+ + \ No newline at end of file diff --git a/code/10466/10466_3.html b/code/10466/10466_3.html new file mode 100644 index 0000000000000000000000000000000000000000..3d403ce3df3cfef9c0ec86aff898f6e98f997340 --- /dev/null +++ b/code/10466/10466_3.html @@ -0,0 +1,151 @@ + + + +UI Render - Discover Screen + + + +
+ + +
+
+ + + +
+
+ + + + +
+
The Grand Plan to rise and Shine
+
+ + +
+
+ Category + +
+
+ Time + +
+
+ + +
the grand plan to rise and shine
+ + +
+ + +
+ + + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10466/10466_4.html b/code/10466/10466_4.html new file mode 100644 index 0000000000000000000000000000000000000000..7e69cd26e2ce3703e588f97eb83022958146859e --- /dev/null +++ b/code/10466/10466_4.html @@ -0,0 +1,306 @@ + + + +Mobile UI Render + + + +
+ +
+
+
+ + + +
+ +
+ + + +
+
+ +
+
+ Category + + + +
+
+ Time + + + +
+
+ +
+
+
[IMG: Story Cover]
+
+

The Grand Plan to Rise and Shine

+
Frankie Bridge • Sleep Story
+
34 min
+
+
+
+
+ + +
+
+
+
+ + + +
+
+
Shine
+
Shines
+
Shinee
+
+
+
+ + + +
+
+ +
+
+
q
w
e
r
t
y
u
i
o
p
+
+
+
a
s
d
f
g
h
j
k
l
+
+
+
+ + + +
+
z
x
c
v
b
n
m
+
+ + + +
+
+
+
?123
+
,
+
🙂
+
+
.
+
+ + + + +
+
+
+
+
+ + \ No newline at end of file diff --git a/code/10466/10466_5.html b/code/10466/10466_5.html new file mode 100644 index 0000000000000000000000000000000000000000..5a4313e6609cf5fbf0f86fce908ea45cfe18f113 --- /dev/null +++ b/code/10466/10466_5.html @@ -0,0 +1,257 @@ + + + +Sleep Story Search + + + + +
+
+
+ + + +
+
+ + + +
+
The Grand Plan to rise and Shine
+
+ +
+
Category
+
Time
+
+ +
+
+
[IMG: Sleep Story Cover]
+
+
The Grand Plan to Rise and Shine
+ +
34 min
+
+
+
+ +
+ + +
+
+
1
2
3
4
5
+
6
7
8
9
0
+
+ +
+
q
w
e
r
t
+
y
u
i
o
p
+
+ +
+
+
a
s
d
f
+
g
h
j
k
l
+
+
+ +
+
+
z
x
c
v
+
b
n
m
+
+
+ +
+
?123
+
,
+
space
+
.
+
return
+
+
+
+ + \ No newline at end of file diff --git a/code/10466/10466_6.html b/code/10466/10466_6.html new file mode 100644 index 0000000000000000000000000000000000000000..177956ec542bf044f8e7e3e019ec69b6c3d652dc --- /dev/null +++ b/code/10466/10466_6.html @@ -0,0 +1,239 @@ + + + +Calm UI - Sleep Story + + + +
+ + +
+ +
The Grand Plan to rise and Shine
+ +
+
+ Category + + + +
+
+ Time + + + +
+
+
+ + +
+
+
[IMG: Sleep Story Cover]
+
+
The Grand Plan to Rise and Shine
+
Frankie Bridge • Sleep Story
+
34 min
+
+
+
+ + +
+
+ + + + + +
+
[IMG: Cover]
+
+
The Grand Plan to Rise and Shine
+
Frankie Bridge
+
+
+ + + + +
+
+ + +
+
+
+ + + + +
+ Home +
+ +
+
+ + + + +
+ Sleep +
+ +
+
+ + + + + + +
+ Discover +
+ +
+
+ + + + + +
+ Profile +
+ +
+
+ + + + +
+ Premium +
+
+ +
+ + \ No newline at end of file diff --git a/code/10467/10467_0.html b/code/10467/10467_0.html new file mode 100644 index 0000000000000000000000000000000000000000..32fe96b2fd62a01c9093a013211f9fbcea357dd8 --- /dev/null +++ b/code/10467/10467_0.html @@ -0,0 +1,307 @@ + + + +Swimming Class Note UI + + + +
+ + +
+
8:30
+
+
+
+
+
+
+
+
+ + + + + +
+ + + + + +
Swimming Class
+ +
+ + + + + + + +
+
+ + +
+
+ enter The swimming class is scheduled on 10 august at 11 am +
+
+ + +
59/5000
+ + +
+ + + + + + + + + +
B
+
I
+
U
+ +
A
+
+ +
14 ▼
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10467/10467_1.html b/code/10467/10467_1.html new file mode 100644 index 0000000000000000000000000000000000000000..59d16bf16ba1cec972fca34bd76ad2b2350da028 --- /dev/null +++ b/code/10467/10467_1.html @@ -0,0 +1,206 @@ + + + + +Notally Mock + + + +
+ + +
+
8:31
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ + + + +
+
Notally
+
+ +
+ + +
+
+
Swimming Class
+
2 days ago
+
+ the swimming class is scheduled on 10 august at 11 am. Se +
+
+
+ + +
+ + + +
+ + +
+
+ + \ No newline at end of file diff --git a/code/10467/10467_2.html b/code/10467/10467_2.html new file mode 100644 index 0000000000000000000000000000000000000000..2efa98208fbdfacead73c0f2d6359bb788a0295e --- /dev/null +++ b/code/10467/10467_2.html @@ -0,0 +1,199 @@ + + + + +Swimming Class Note UI + + + +
+ + +
+
8:32
+
+ +
+ + + +
+ +
+ + + + +
+ +
+ + + + + +
+
+
+ + +
+
+ +
+ + + +
+
+
+ +
+ + + + +
+ +
+ + + + + + +
+ +
+ + + + + +
+
+
+ + +
Swimming Class
+ + +
Tue 8 Aug 2023
+ + +
+ the swimming class is scheduled on 10 august
+ at 11 am. Se +
+ + +
+
+ + \ No newline at end of file diff --git a/code/10467/10467_3.html b/code/10467/10467_3.html new file mode 100644 index 0000000000000000000000000000000000000000..815b5203bf702676e6a8ba8ed8bd9fce7983bc3c --- /dev/null +++ b/code/10467/10467_3.html @@ -0,0 +1,347 @@ + + + +Mobile UI - Swimming Class Share Sheet + + + +
+ + +
+
8:33
+
+
+
+
+
+
+
+ + +
+
+ + + +
+
+

Swimming Class

+
Tue 8 Aug 2023
+
+
+
+ + + + +
+
+ + + + + +
+
+ + + + + + +
+
+
+ + +
+
+ the swimming class is scheduled on 10 august at 11 am. Se +
+
+ + +
+
+ + + +
+
+ + + + + Copy +
+
+ + + + Nearby +
+
+ +
Swimming Class
+ +
+
A +
+
+
Anuj
+
+ +
+
+
+ + + + + +
+
Gmail
+
+ +
+
+ + + + +
+
Messages
+
+ +
+
+ + + + +
+
Drive
+
+ +
+
+ + + + + +
+
Chat
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10467/10467_4.html b/code/10467/10467_4.html new file mode 100644 index 0000000000000000000000000000000000000000..d147aeac015a2e2f49bbd1a96d3184601f8e6d79 --- /dev/null +++ b/code/10467/10467_4.html @@ -0,0 +1,227 @@ + + + + +Gmail Compose Mock + + + +
+ + +
+
8:33
+
+
+
+
+
+
+
+ + +
+
+ + + +
+
Compose
+
+ + + + + + + + + + + + + + +
+
+ + +
+
From
+
dbwscratch.test.id2@gmail.com
+
+ + +
+
To
+
+ + + +
+ + +
+
Swimming Class
+
+ + +
+ the swimming class is scheduled on 10 august
+ at 11 am. Se +
+ + +
+
+
+
🙂
+
GIF
+
+ + + +
+
G↔
+
🎨
+
🎤
+
+ +
+ +
+
q
w
e
r
t
+
y
u
i
o
p
+
+ +
+
a
s
d
f
g
+
h
j
k
l
+
+ + + +
+
+ +
+
+ +
+
z
x
c
v
+
b
n
m
+
+ + + +
+
+ +
+
?123
+
@
+
🙂
+
space
+
.
+
+ + + +
+
+
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10467/10467_5.html b/code/10467/10467_5.html new file mode 100644 index 0000000000000000000000000000000000000000..81fe1467aba040190a497e888974aa73c81be560 --- /dev/null +++ b/code/10467/10467_5.html @@ -0,0 +1,284 @@ + + + + +Gmail Compose Mock + + + +
+ + +
+
8:34
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ +
+
Compose
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
From
+
+
dbwscratch.test.id2@gmail.com
+
+
+ + +
+
To
+
+
dbwscratch.test.id3@gmail.com
+ +
+
+ + +
+
+
d
+
+
dbwscratch.test.id3@gmail.com
+
dbwscratch.test.id3@gmail.com
+
+
+
+ + +
+ + +
+
+
+
+
GIF
+
+
G↔
+
🎨
+
🔇
+
+ +
+
q
+
w
+
e
+
r
+
t
+
y
+
u
+
i
+
o
+
p
+
0
+
+ +
+
a
+
s
+
d
+
f
+
g
+
h
+
j
+
k
+
l
+
+ +
+
z
+
x
+
c
+
v
+
b
+
n
+
m
+
+ +
+
+ +
+
?123
+
@
+
+
space
+
.
+
+ +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10467/10467_7.html b/code/10467/10467_7.html new file mode 100644 index 0000000000000000000000000000000000000000..0f3063d3b7c78f9540dc8914637f12e55edc6aa2 --- /dev/null +++ b/code/10467/10467_7.html @@ -0,0 +1,185 @@ + + + +Swimming Class Note UI + + + +
+ +
+
8:37
+
+ + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + +
+
+ + + + + + + + + + + + + + + + + + +
+
+ + +
Swimming Class
+ + +
Tue 8 Aug 2023
+ + +
+ the swimming class is scheduled on 10 august at 11 am. Se +
+ + +
+
+ + \ No newline at end of file diff --git a/code/10468/10468_0.html b/code/10468/10468_0.html new file mode 100644 index 0000000000000000000000000000000000000000..b1fb66631bcd83bbb37128f222d94d0cf9f01fe4 --- /dev/null +++ b/code/10468/10468_0.html @@ -0,0 +1,416 @@ + + + +Mobile UI Mock - Drive + + + +
+ + +
+
11:02
+
+ + +
100%
+
+
+ + +
+
+ + +
+
Search in Drive
+
R
+
+ + +
+
My Drive
+
Computers
+
+ + +
+
+
Name
+ +
+
+ +
+
+ + +
+ +
+
+
+
+
+
History files
+
+ +
+
+
+ + +
+
+
[IMG: Book cover thumbnail]
+
+ PDF +
+
+ A_short_hist
ory_of_Ger... +
+
+ +
+
+
+
+ + +
+ +
+ + +
+ + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10468/10468_1.html b/code/10468/10468_1.html new file mode 100644 index 0000000000000000000000000000000000000000..592308ccafc8e9f601e0c44c7790ddece6a31ddf --- /dev/null +++ b/code/10468/10468_1.html @@ -0,0 +1,312 @@ + + + + +Drive - Action Sheet (Dark) + + + +
+ + +
+
+
11:03
+ + + + +
+
+ + + + + + + + + + + + + +
100%
+
+
+ + +
+
+ + + +
+
+ + + + + Search in Drive +
+
R
+
+ + +
+
My Drive
+
Computers
+
+ + +
+
PDF
+
A_short_history_of_Germany_(IA_shorthist...
+
+ + + + + +
+
+ + +
+
+
+ + + + + + + +
+
Share
+
+ +
+
+ + + + + + + +
+
Manage access
+
+ +
+
+ + + + +
+
Add to Starred
+
+ +
+
+ + + + + +
+
Make available offline
+
+ +
+ +
+
+ + + + + +
+
Copy link
+
+ +
+
+ + + + + +
+
Make a copy
+
+ +
+
+ + + + +
+
Send a copy
+
+ +
+ +
+
+ + + + + + + +
+
Open with
+
+ +
+
+ + + + + + +
+
Download
+
+ +
+
+ + + + + +
+
Rename
+
+ +
+
+ + + + + + +
+
Add shortcut to Drive
+
+ +
+
+ + + + + + +
+
Move
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10468/10468_2.html b/code/10468/10468_2.html new file mode 100644 index 0000000000000000000000000000000000000000..2d7415ce1dc9203258e6ef865fa86e13e548161c --- /dev/null +++ b/code/10468/10468_2.html @@ -0,0 +1,276 @@ + + + + +Share Screen Mock + + + +
+ + +
+
+
11:04
+ + + +
+
+ + + + + + + +
100%
+
+
+ + +
+
+
+ + + +
+
Share
+
+
+
+ + + +
+
+ + + + + +
+
+
+ + +
+
+ + + + + +
Add people or groups
+
+ +
+ +
Manage access
+ +
+
+ + + + +
+
Not shared
+
+
+ + +
+
+
◼︎
+
+
GIF
+
+
G↔
+
🎨
+
🎤
+
+ +
+
+
q
w
e
r
t
y
u
i
o
p
+
+
+
a
s
d
f
g
h
j
k
l
+
+
+
z
x
c
v
b
n
m
+
+
+
+
?123
+
,
+
+
+
.
+
+
+
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10468/10468_3.html b/code/10468/10468_3.html new file mode 100644 index 0000000000000000000000000000000000000000..d45d060f35e2ff3c775bbf91e3187b497de2b226 --- /dev/null +++ b/code/10468/10468_3.html @@ -0,0 +1,298 @@ + + + +Share UI - HTML Render + + + +
+ + +
+
+
11:05
+
+ + + +
+
+
+
+ + + + + + + +
+
+ + + + + + +
+
100%
+
+
+ + +
+
+
+ + + + +
+
Share
+
+
+
+ + + + +
+
+ + + + + + +
+
+
+ + +
+
+
+ + + + +
+ +
+
+ +
+
Editor
+ +
+
+ +
+
+ + + +
+
Notify people
+
+
+ +
+
Add a message
+
+
+ + +
+
+
+
🙂
+
GIF
+
⚙️
+
G⇄
+
🎨
+
+ + + + + +
+
+ +
+
q
w
e
r
t
+
y
u
i
o
p
+
+
+
a
s
d
f
g
+
h
j
k
l
+
+
+
z
x
c
v
b
+
n
m
+
+ + + +
+
+
+
?123
+
,
+
🙂
+
+
.
+
+ +
+ + + +
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10468/10468_4.html b/code/10468/10468_4.html new file mode 100644 index 0000000000000000000000000000000000000000..638d408f840226106f9c78b3875751268f89378c --- /dev/null +++ b/code/10468/10468_4.html @@ -0,0 +1,259 @@ + + + +Share Screen Mock + + + +
+ + +
+
+
11:05
+
+ + + +
+
+
+
+ + + +
+
+ + + + +
+
100%
+
+
+ + +
+
+
+ + + +
+
Share
+
+
+
+ + + +
+
+ + + + + +
+
+
+ + +
+ + +
+ + +
+
Editor
+
+ + + +
+
+ + +
+
+ + + +
+
Notify people
+
+ + +
Add a message
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10468/10468_5.html b/code/10468/10468_5.html new file mode 100644 index 0000000000000000000000000000000000000000..d83305eddb0b3ce34fc6201f017ae46878f862d4 --- /dev/null +++ b/code/10468/10468_5.html @@ -0,0 +1,448 @@ + + + +Mobile UI Mock - Drive + + + +
+ + +
+
+
11:05
+
+ + + +
+
+
+
+ + + + + +
+
100%
+
+
+ + +
+ +
R
+
+ + +
+
My Drive
+
Computers
+
+ + +
+
Name ↑
+
+ + + +
+
+ + +
+ +
+
+
+
+
+
History files
+
+ + + + + +
+
+ + +
+
+
[IMG: PDF thumbnail]
+
+ + + + +
+
PDF
+
+
A_short_hist
ory_of_Ger...
+
+ + + + + +
+
+
+ + +
+ + + +
+ + + + + +
+ + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10469/10469_0.html b/code/10469/10469_0.html new file mode 100644 index 0000000000000000000000000000000000000000..f67581eef5f74297f11eab98e9b572a89a4ddec7 --- /dev/null +++ b/code/10469/10469_0.html @@ -0,0 +1,262 @@ + + + +Chat UI Mock + + + +
+ + +
+
+
11:38
+
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ + + +
+
[IMG: Avatar]
+
+
Natalie Larson
+
Last seen 2h ago
+
+
+
+ + + + +
+
+ + + +
+
+
+ + +
+ + +
+
Hello
+
+ + +
9:53 AM
+
+
+
+ + + + Hello +
Natalie Larson, Today at 9:45 AM
+
+ how you are +
+
+ + +
10:55 AM
+
+
+
[IMG: Living room wall with hex panels]
+
+ + +
+
+
+
+ + + +
+
+
0:28
+
+
+
+ + +
11:34 AM
+
+
+
+
+
[IMG: Google Map - Dawson Creek]
+
+
+
Dawson Creek
+
Dawson Creek British Columbia
+
+
+
+ +
+ + +
+
+
+
+
Type a message
+
+ + + + + + +
+
+ + + +
+
+ + + + + +
+
b
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10469/10469_1.html b/code/10469/10469_1.html new file mode 100644 index 0000000000000000000000000000000000000000..d03c2f82e9687b24020107ddc62e1b7f59bdf63a --- /dev/null +++ b/code/10469/10469_1.html @@ -0,0 +1,364 @@ + + + +Mobile UI Mock + + + +
+ +
+
11:38
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
[IMG: Profile Photo]
+
+
Amelia miller
+
Share what you're up to
+
+
+ +
+ +
+
+ + + + + Search +
+
+ + + +
+
+
+ +
+
+ + + + +
+
Easy meetings with anyone
+
Tap here to start a video meeting
+
+
+
+ + + + +
+
+ +
+ + +
+
+
[IMG: Bing Logo]
+
+
+ Bing +
+ + + +
+
+
Hey, this is Bing! How can I help you ...
+
+
9:50 AM
+
1
+
+
+
Create a magic spell
+
Imagine a new sea creature
+
+
+ + +
+
+
[IMG: Plant Photo]
+
+
+ Amelia miller (You) +
+ + + +
+
+
+ + + +
+
+ + +
+
+
[IMG: Botanical Art]
+
+
+ Natalie Larson +
+
Dawson Creek, Dawson Creek Briti...
+
+
11:34 AM
+
L
+
+
+ + +
+
+
RW
+
+
+ Richard Wagner +
+
+ + + + quoted message +
+
+
9:57 AM
+
+
+ +
+ + +
+ + + +
+ + +
+ + + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10469/10469_2.html b/code/10469/10469_2.html new file mode 100644 index 0000000000000000000000000000000000000000..3cc3620a716a08f4029649f2070dada49bb62d7d --- /dev/null +++ b/code/10469/10469_2.html @@ -0,0 +1,246 @@ + + + +New Chat UI + + + + +
+ + +
+
11:39
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ + + +
+
New Chat
+
+ + +
+ +
+ + +
+
+
+ + + +
+
Meet Now
+
+ +
+
+ + + +
+
New Group Chat
+
+ +
+
+ + + +
+
New Call
+
+ +
+
+ + + +
+
New Moderated Chat
+
+ +
+
+ + + +
+
New Private Conversation
+
+
+ + +
Suggested
+
+
[Avatar]
+
Natalie Larson
+
+
+
[Avatar]
+
Richard Wagner
+
+ + +
People
+ +
+
[Avatar]
+
Amelia miller (You)
+
+ +
+
[Avatar]
+
Bing
+
+ +
+
[Avatar]
+
Echo / Sound Test Service
+
+ +
+
[Avatar]
+
Natalie Larson
+
+ +
+
[Avatar]
+
Richard Wagner
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10469/10469_3.html b/code/10469/10469_3.html new file mode 100644 index 0000000000000000000000000000000000000000..2b3304c70a7b08b78cbee965f2fcbf01144e5f04 --- /dev/null +++ b/code/10469/10469_3.html @@ -0,0 +1,274 @@ + + + +New Group Chat UI + + + +
+ + +
+
+
11:39
+
+
+ + + + + + + + + + +
+
+ + +
+
+ + + +
+
New Group Chat
+
+ + + + + +
+ + + +
+ + +
+
+
+
+
+ + +
+
Group name
+
+
+ + +
+ + + +
+ + +
+
+
Q
W
E
R
T
+
Y
U
I
O
P
+
+
+
A
S
D
F
G
+
H
J
K
L
+
+
+
Z
X
C
V
B
+
N
M
+
+
+
+
?123
+
,
+
😊
+
Space
+
.
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10469/10469_4.html b/code/10469/10469_4.html new file mode 100644 index 0000000000000000000000000000000000000000..8f15cedc766191b681d9e4534e0c14df2555759a --- /dev/null +++ b/code/10469/10469_4.html @@ -0,0 +1,312 @@ + + + +New Group Chat UI + + + +
+ + +
+
+
11:40
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + +
+
+ + +
+ + + + New Group Chat +
+ + + +
+ + + + + +
+ + +
+
+
+
+
+
Friends
+
+ + +
+ + + + +
+ + +
+
+
Friends
+
+
Friend's
+
+
Friendship
+
+ + + + + + + +
+
+ +
+
+
q
w
e
r
t
y
u
i
o
p
+
+
+
a
s
d
f
g
h
j
k
l
+
+
+
+ +
+
z
x
c
v
b
n
m
+
+ + + + +
+
+
+
?123
+
,
+
😊
+
+
.
+
+
+ +
+
+
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10469/10469_5.html b/code/10469/10469_5.html new file mode 100644 index 0000000000000000000000000000000000000000..4750a41d5184de9ede5542648308594a3a1d82b0 --- /dev/null +++ b/code/10469/10469_5.html @@ -0,0 +1,276 @@ + + + + +Create New Group UI + + + +
+ + +
+
+ + + +
+
Create new group
+
+ + + + + + +
+
+
+
[IMG: User Avatar]
+ +
+
+
Natalie Larson
+
+
+
+ +
+
+
[IMG: Initials "RW"]
+ +
+
+
Richard Wagner
+
+
+
+
+ + + +
+
+
+
[IMG: Bing Logo]
+
+
+
+ Bing + + + +
+
+
+
+ +
+
+
[IMG: Echo / Sound Test]
+ +
+
+
Echo / Sound Test Service .
+
+
+
+ +
+
+
[IMG: User Avatar]
+ +
+
+
Natalie Larson
+
+
+
+ +
+
+
[IMG: Initials "RW"]
+ +
+
+
Richard Wagner
+
+
+
+
+ + +
+
Done
+
+ +
+ + \ No newline at end of file diff --git a/code/10469/10469_6.html b/code/10469/10469_6.html new file mode 100644 index 0000000000000000000000000000000000000000..aedd66b59b22a1276eb8d22edd3e191cbedeba21 --- /dev/null +++ b/code/10469/10469_6.html @@ -0,0 +1,183 @@ + + + +Create new group - Mock UI + + + +
+ + +
+
11:42
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ + + +
+
Create new group
+
+ + + + + +
+
+
[IMG: Avatar]
+
+ +
+
Natalie
+
+
+ + +
Suggested
+
+
+
[IMG: Avatar]
+
Natalie Larson
+
+
+ +
+
+
+
+
[IMG: RW]
+
Richard Wagner
+
+
+ +
+
+
+
+ + +
People
+
+
+
[IMG: Bing]
+
Bing + + + Verified + +
+
+
+ +
+
+
+ +
+
[IMG: Echo]
+
Echo / Sound Test Service .
+
+
+ +
+
+
+ +
+
[IMG: Avatar]
+
Natalie Larson
+
+
+ +
+
+
+ +
+
[IMG: RW]
+
Richard Wagner
+
+
+ +
+
+
+
+ + + + +
+ + \ No newline at end of file diff --git a/code/10469/10469_7.html b/code/10469/10469_7.html new file mode 100644 index 0000000000000000000000000000000000000000..ad14364e992cee021241e7ef2ed2867eb07ad85c --- /dev/null +++ b/code/10469/10469_7.html @@ -0,0 +1,321 @@ + + + +Create new group UI + + + +
+ + +
+
11:42
+
+ + + + + + +
+
+
+ + +
+
+ +
+
Create new group
+
+ + + + + +
+
+
+ [IMG: Avatar] +
×
+
+
Natalie
+
+
+
+ [IMG: Avatar] +
×
+
+
Richard
+
+
+ + +
Suggested
+
+
+
+
[IMG: Avatar]
+
Natalie Larson
+
+
+ +
+
+
+
+
[IMG: Avatar]
+
Richard Wagner
+
+
+ +
+
+
+ + +
People
+
+
+
+
[IMG: Bing Logo]
+
+ Bing + +
+
+
+
+ +
+
+
[IMG: Headset]
+
Echo / Sound Test Service
+
+
+
+ +
+
+
[IMG: Avatar]
+
Natalie Larson
+
+
+ +
+
+ +
+
+
[IMG: Avatar]
+
Richard Wagner
+
+
+ +
+
+
+ + +
Done
+
+
+ + \ No newline at end of file diff --git a/code/10469/10469_8.html b/code/10469/10469_8.html new file mode 100644 index 0000000000000000000000000000000000000000..5c8d822d92f33f2460546748095ca3e91f95a4b8 --- /dev/null +++ b/code/10469/10469_8.html @@ -0,0 +1,285 @@ + + + +Mobile Chat UI + + + +
+ + +
+
11:43
+
+ 👻👻👻👻👻 + +
+
+ + + + + + + + + + + + + +
+
+ + +
+ + +
+
+
+
+
+
+
+
conversation...
+
+ + +
+ + +
+
+ + + +
+
FR
+
+
Friends
+
1 participant
+
+
+ + +
+ + +
+
+ + + +
+
Type a message
+
+ +
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10469/10469_9.html b/code/10469/10469_9.html new file mode 100644 index 0000000000000000000000000000000000000000..b67df6d675ee35456d5ae9d4781760250131a274 --- /dev/null +++ b/code/10469/10469_9.html @@ -0,0 +1,214 @@ + + + +Skype Group UI Mock + + + +
+ + +
+
11:43
+
+ + + + + + 📶 +
+
+
+ + +
+
+
+ + + +
+
FR
+
+
Friends
+
3 participants
+
+
+
+
+ + + +
+
+
+ + +
+
+
+
+
+
+ + +
+ + +
Invite Skype contacts or share the link
+ +
+
Invite
+
Add people
+
+
+ + +
+

Amelia miller enabled joining this conversation using a link. Go to Group Settings to manage access to the group.

+

Amelia miller added Natalie Larson, Richard Wagner to this conversation

+

Amelia miller has made the chat history visible to everyone

+
+ + +
+
+
+ +
+
Type a message
+
+ +
+
+ +
+ + + +
+
+ +
+ + \ No newline at end of file diff --git a/code/1047/1047_0.html b/code/1047/1047_0.html new file mode 100644 index 0000000000000000000000000000000000000000..9196d6bb7bea38ef107d5e4599fd3beb0847275a --- /dev/null +++ b/code/1047/1047_0.html @@ -0,0 +1,426 @@ + + + + +URecorder UI Mock + + + +
+ + +
+
3:39
+ + + +
+ + + + +
+
+ + +
+
URecorder
+
+
+ + +
+
+ + +
+
+ + +
+
+
+ + +
+

Notice

+

Uninstalling URecorder will result in the loss of your recordings.

+
Got it
+
+ + +
+
1 recording
+
+
+ + +
+
+ + +
+
+ + +
+
+
+ + +
+
+ + + + + + + + +
+
+
Data Analysis First speech
+
+
00:04  78.66KB  M4A
+
11-09 15:12
+
+
+ +
+ + + + + +
+
+
+ + +
+
+ + + + + +
+
+ +
+ + \ No newline at end of file diff --git a/code/1047/1047_1.html b/code/1047/1047_1.html new file mode 100644 index 0000000000000000000000000000000000000000..152f62b2754bc8a2124a0cc72ae251eadb1803ca --- /dev/null +++ b/code/1047/1047_1.html @@ -0,0 +1,329 @@ + + + + + +URecorder Mock + + + +
+ + +
+
3:40
+
+ + + + + + + + +
+
+ + +
+ +
+ + + + + + + + + + + + +
+
+ + +
+
Notice
+
Uninstalling URecorder will result in the loss of your recordings.
+ +
+ + +
+
1 recording
+
+ + + + + + + + + + + + + + +
+
+ + +
+
[IMG: Audio Wave Icon]
+
+
Data Analysis First speech
+
00:04   78.66KB   M4A
+
+
+
11-09 15:12
+
+ + + + + +
+
+
+ + +
+
+
+ + + + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/1047/1047_2.html b/code/1047/1047_2.html new file mode 100644 index 0000000000000000000000000000000000000000..7b68fa639142ed01547eb736a0e697950422bb46 --- /dev/null +++ b/code/1047/1047_2.html @@ -0,0 +1,366 @@ + + + + +URecorder UI + + + +
+ + +
+
3:42
+
+ + + + +
+
+ + +
+
URecorder
+
+
+ + + +
+
+ + + +
+
+ + + +
+
+
+ + +
+

Notice

+

Uninstalling URecorder will result in the loss of your recordings.

+
Got it
+
+ + +
+
1 recording
+
+ + + + + + + + + + + + +
+
+ + +
+
+ + + + +
+
+
Data Analysis First speech
+
00:04 78.66KB M4A
+
+
+
11-09 15:12
+
+ + + + + +
+
+
+ + +
+
+
Data Analysis First speech
+
+
+ + + +
+
+ + + +
+
+
+ +
+
+
+ + + + +
+
Rename
+
+ +
+
+ + + + +
+
Trim
+
+ +
+
+ + + + +
+
Continue recording
+
+ +
+
+ + + + +
+
Set as ringtone
+
+ +
+
+ + + + +
+
Details
+
+
+
+ +
+
+ + \ No newline at end of file diff --git a/code/1047/1047_3.html b/code/1047/1047_3.html new file mode 100644 index 0000000000000000000000000000000000000000..1b677e6409a2c4007db58c42b05d63f76904d423 --- /dev/null +++ b/code/1047/1047_3.html @@ -0,0 +1,315 @@ + + + + + +URecorder Mock + + + +
+ + +
+
3:43
+
+ + + +
+
+ + +
+
URecorder
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
Notice
+
Uninstalling URecorder will result in the loss of your recordings.
+
Got it
+
+ + +
+
1 recording
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
[IMG: Audio]
+
+
Data Analysis First speech
+
00:04 · 78.66KB · M4A
+
+
+
11-09 15:12
+
+
+
+ + +
+
+ +
+
[IMG]
+
Data Analysis First speech.m4a
+
+ +
Nearby
+ +
No recommended people to share with
+ + +
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/1047/1047_4.html b/code/1047/1047_4.html new file mode 100644 index 0000000000000000000000000000000000000000..bab293fadf9948621ef41aea3f3a1d56cb9173cc --- /dev/null +++ b/code/1047/1047_4.html @@ -0,0 +1,230 @@ + + + + +Gmail Compose Dark UI + + + +
+ + +
+
3:43
+
+ + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + +
+
+ + + + + + + + + + + + + + +
+
+ + +
+
+
From
+
levivanloon93@gmail.com
+
+
+
To
+
+ + + +
+
+
Subject
+
+ + + +Email Compose UI - Dark + + + +
+ + +
+
3:44
+
+
+ + + + + + + +
+
+ + + + + + + +
+
+ + + + + + +
+
+
+ + +
+
+
+ + + + +
+
+
+
+ + + + +
+
+ + + + +
+
+ + + + + + +
+
+
+ + +
+
+
From
+
levivanloon93@gmail.com
+
+ +
+
To
+
+ + + +
+ +
+
Subject
+
+
+ +
Compose email
+ + +
+
+ + + + + + +
+
+
Data Analysis First speech.m4a
+
80 KB
+
+
+ + + +
+
+
+ + +
+
+
+
+
GIF
+
+
G↔
+
🎨
+
🎤
+
+ +
+
+
q
+
w
+
e
+
r
+
t
+
y
+
u
+
i
+
o
+
p
+
+
+
a
+
s
+
d
+
f
+
g
+
h
+
j
+
k
+
l
+
+
+
+
z
+
x
+
c
+
v
+
b
+
n
+
m
+
+
+
+
?123
+
@
+
+
space
+
.
+
+
+
+
+ +
+
+ + \ No newline at end of file diff --git a/code/1047/1047_6.html b/code/1047/1047_6.html new file mode 100644 index 0000000000000000000000000000000000000000..a65493dc2945d709b28ca036d801049dbe7408a0 --- /dev/null +++ b/code/1047/1047_6.html @@ -0,0 +1,263 @@ + + + + + +Email Compose Dark UI + + + +
+ + +
+
3:45
+
+
+ + + + + + +
+
+ + + + + +
+
+
+ + +
+
+
+ + + +
+
+
+
+ + + + +
+
+ + + +
+
+ + + + + +
+
+
+
+ + +
+ From + levivanloon93@gmail.com +
+
+ + +
+
+ To + violetvanloon67@gmail.com +
+
+ + + +
+
+ + +
+
v
+
+
violetvanloon67@gmail.com
+
violetvanloon67@gmail.com
+
+
+ + +
+ + +
+ +
+
+
+
GIF
+
+
Gᵀ
+
🎨
+
🎙
+
+ + +
+
q
w
e
r
t
+
y
u
i
o
p
+
+
+
a
s
d
f
g
+
h
j
k
l
+
@
+
+
+
+
z
x
c
v
b
+
n
m
+
+ + + +
+
.
+
+
+
?123
+
@
+
+
space
+
.
+
+ + + +
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/1047/1047_7.html b/code/1047/1047_7.html new file mode 100644 index 0000000000000000000000000000000000000000..01b421fd7534d19db6d95e62203369e70dc9b4c9 --- /dev/null +++ b/code/1047/1047_7.html @@ -0,0 +1,295 @@ + + + + + +URecorder Mock + + + +
+ + +
+
3:46
+
+ + + + + + + + +
+
+ + +
+
URecorder
+
+ + + + + + + + + + + + + + +
+
+ + +
+
+

Notice

+

Uninstalling URecorder will result in the loss of your recordings.

+
+
Got it
+
+ + +
+
1 recording
+
+ + + + + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + +
+
+
Data Analysis First speech
+
00:04   78.66KB   M4A
+
+
+
11-09 15:12
+
+
+
+ +
+ + +
+
+
+ + + + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10470/10470_0.html b/code/10470/10470_0.html new file mode 100644 index 0000000000000000000000000000000000000000..545360cc31ad54d1ce32cea419d14f7817dd85f4 --- /dev/null +++ b/code/10470/10470_0.html @@ -0,0 +1,247 @@ + + + + + +Charts Screen + + + +
+ + +
+ 9:01 +
+ +
+ + +
+
+ + +
+
+ + + + +
+
Charts
+
+ + +
+
+
1 GBP = 4.543934 AED
+
+ +
+
-0.0013 (-0.029%) Today
+
+ + +
+
1D
+
1W
+
1M
+
3M
+
1Y
+
5Y
+
10Y
+
+ + +
+ +
4.5466
+
4.5444
+
4.5423
+ + +
+
+
+ + +
+ + + + +
+
+ + +
Create alert
+ + +
+

Stats

+
+
High
+
4.546570
+
+
+
Low
+
4.542300
+
+
+
Average
+
4.544435
+
+
+ + +
+ + + + + +
+ + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10470/10470_1.html b/code/10470/10470_1.html new file mode 100644 index 0000000000000000000000000000000000000000..230ac178ea5303dc720a370e605ed37ebd769529 --- /dev/null +++ b/code/10470/10470_1.html @@ -0,0 +1,350 @@ + + + + + +Charts Screen Mock + + + +
+ + +
+
9:01
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + +
+
Charts
+
+ + +
+
[IMG: GBP Flag]
+
[IMG: AED Flag]
+
[IMG: Currency Pair]
+
+ + +
+
+
1 GBP = 4.543934 AED
+
+ +
+
+0.0954 (2.145%) Past week
+
+ + +
+
1D
+
1W
+
1M
+
3M
+
1Y
+
5Y
+
10Y
+
+ + +
+ +
4.55
+
+ +
4.50
+
+ +
4.44
+
+ + + + + + + + +
+ + +
Create alert
+ + +
+

Stats

+
+
High
+
4.548401
+
+
+
Low
+
4.441913
+
+
+
Average
+
4.495157
+
+
+ + +
+ + + + + +
+ +
+ +
+ + \ No newline at end of file diff --git a/code/10470/10470_2.html b/code/10470/10470_2.html new file mode 100644 index 0000000000000000000000000000000000000000..961a710e9c35a8571b0bd94ceabc07d51d947ab2 --- /dev/null +++ b/code/10470/10470_2.html @@ -0,0 +1,374 @@ + + + + + +Charts Screen Mock + + + +
+ + +
+
9:02
+
+ + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + +
+
Charts
+
+ + +
+
+
1 GBP = 4.543934 AED
+
+ + + + + + + +
+
+
+0.0688 (1.538%) Past month
+ + +
+
1D
+
1W
+
1M
+
3M
+
1Y
+
5Y
+
10Y
+
+ + +
+ +
+
+
+ +
4.55
+
4.49
+
4.43
+ + + + + + + +
+ + + + + +
+
Stats
+
High4.548401
+
Low4.434682
+
Average4.491541
+
+
+ + +
+
+ + + $ + +
Convert
+
+ +
+ + + + + + + + +
Charts
+
+ +
+
+ + + +
+
Send
+
+ +
+ + + + +
Track
+
+ +
+ + + + +
Rate Alerts
+
+
+ + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10475/10475_0.html b/code/10475/10475_0.html new file mode 100644 index 0000000000000000000000000000000000000000..5c06b4bad7245b8771a18785bbd97f2e7fada2d6 --- /dev/null +++ b/code/10475/10475_0.html @@ -0,0 +1,296 @@ + + + + + +Blue Sky Contact Form + + + +
+ + +
+
+
2:47
+
+
+ + + + +
+
+
+
+
+
+
+
+ + + + +
+
+
+ + + + + +
+
100%
+
+
+
+ + +
+
+ + + +
+
Blue Sky Contact Form
+
+ + +
+
+
+
Message *
+
Amselweg 27, Ulm, Germany - 89075
+
+ +
+
Date of Birth *
+
02-22-1958
+
+ + + + + Date +
+
+ +
Submit
+
+
+ + +
+
+ +
Jotform
+
+
Create your own Jotform
+
+ + +
+
+
q
w
e
r
t
y
u
i
o
p
+
+
+
a
s
d
f
g
h
j
k
l
+
+
+
shift
z
x
c
v
b
n
m
+
+
+
?123
+
,
+
+
.
+
+
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10475/10475_1.html b/code/10475/10475_1.html new file mode 100644 index 0000000000000000000000000000000000000000..a02dc28e79be7d03c89046a4c4488105ee60cc39 --- /dev/null +++ b/code/10475/10475_1.html @@ -0,0 +1,213 @@ + + + + + +Blue Sky Contact Form - Thank You + + + +
+ + +
+
+
2:48
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + + + +
100%
+
+
+ + +
+
+ + + +
+
Blue Sky Contact Form
+
+ + +
+
+

Thank you!

+

Your submission has been received!

+
+
+ + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10477/10477_0.html b/code/10477/10477_0.html new file mode 100644 index 0000000000000000000000000000000000000000..b20a49ebbf49097c42eff07866ddb4409b9aafef --- /dev/null +++ b/code/10477/10477_0.html @@ -0,0 +1,387 @@ + + + +Nykaa Man - Sports Shoes + + + +
+ + +
+
12:52
+
+
+
+
100%
+
+
+ + +
+
+ + + + + +
+
+ + + + + + + + + + + + + + +
+
+ + +
sports shoes for men
+
9,306 products
+ + +
+
+
+ + + + + + +
+
Sort by
+
Relevance
+
+
+
+ + + + + + + + + +
+
Filter
+
No filter applied
+
+
+
+ + +
+
+
GET UP TO ₹300 OFF
+
On Your 1st App Order
+
+
USE CODE NYKMAN1ST
+
+ + +
+ + +
+
[IMG: Seated model with Black Training Shoes]
+
+ + + + + 4.0 (2) +
+
+
Puma Softride Pro Coast Unisex Black Training Shoes
+
+
₹5599
+
₹7999
+
30% Off
+
+
+
+
+ + + +
+
Select Size
+
+
+ + +
+
[IMG: Black Running Shoes on floor]
+
+ + + + 4.0 (9) +
+
+
Puma Hybrid Nx Men Black Running Shoes
+
+
₹4119
+
₹7499
+
45% Off
+
+
+
+
+ + + +
+
Select Size
+
+
+ + +
+
BESTSELLER
+
[IMG: White Running Shoes top view on turquoise]
+
+ + + + 4.2 (54) +
+
+
Campus Rake Off White Men Running Shoes
+
+
₹1007
+
₹1599
+
37% Off
+
+
+
+ + +
+
[IMG: Full-body shot with Red Walking Shoes]
+
+
Puma Softride Enzo Evo Unisex Red Walking Shoes
+
+
₹5949
+
₹6999
+
15% Off
+
+
+
+ +
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10477/10477_1.html b/code/10477/10477_1.html new file mode 100644 index 0000000000000000000000000000000000000000..3916e79d56b9aa97a01320b0cdd5efd7d91034b5 --- /dev/null +++ b/code/10477/10477_1.html @@ -0,0 +1,332 @@ + + + + +Puma Hybrid Nx Men Black Running Shoes - Mock UI + + + +
+ + +
+
12:52
+
+ + + 100% +
+
+ + +
+ + +
+ + + + + +
+
Puma
+
+
Hybrid Nx Men Black Running Shoes
+ +
+
+ + +
+
[IMG: Black Puma Running Shoes - Primary Image]
+
+
+
+
+
+
+
+
+ + +
+
+
₹4119
+
45% OFF
+
+
+ + + + + View Similar +
+
+
+
MRP ₹7499
+
Inclusive of all taxes
+
+ + +
+
4.0 ★
+ +
+ + +
Select Size
+
Size Guide + +
+
+
UK 6
+
UK 7
+
UK 8
+
UK 9
+
UK 10
+
UK 11
+
+
sold out
+ + +
+
+
+ + + +
+
+ + + + + Add to Bag +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10477/10477_2.html b/code/10477/10477_2.html new file mode 100644 index 0000000000000000000000000000000000000000..e0d3c1937a9f582ac5cbe672bcbee519a9cd7ee3 --- /dev/null +++ b/code/10477/10477_2.html @@ -0,0 +1,277 @@ + + + +Product Page Mock + + + +
+ + +
+
12:53
+
+ ◦◦ + LR + + + 100% + +
+
+ + +
+
+
+ +
+
+
Puma Hybrid Nx Men Black Runnin...
+
★ 4.0 · ₹4119 | 45% off
+
+
+
+
+ +
+
+ +
+
+
+ + +
+
MRP ₹7499
+
Inclusive of all taxes
+
+ + +
+
+ + 4.0 +
+
+ +
+
+ + +
+
+
Select Size
+
Size Guide ›
+
+
+
UK 6
+
UK 7
+
UK 8
+
UK 9
+
UK 10
+
UK 11
+
+
sold out
+
+ + +
+
+
+ + 100% Authentic +
+
+ + Easy return policy +
+
+
+ + +
+
+
Check delivery date
+ +
+
+ + +
+
+
Similar Products
+ +
+
+ +
+
[IMG: Puma Softride Enzo Evo Slip SF Unisex Black Shoe]
+
+
Puma Softride Enzo Evo Slip SF Unisex Black Ru...
+
11 Sizes
+
+ ₹3849 + ₹6999 + 45% +
+
+ ★★★★★ 5/5 (1) +
+
+
+
+ +
+
Select Size
+
+
+ + +
+
[IMG: Puma Cell Phase Men Black Running Shoes]
+
+
Puma Cell Phase Men Black Running Shoes
+
8 Sizes
+
+ ₹3569 + ₹6499 + 45% +
+
+ ★★★★★ 5/5 (1) +
+
+
+
+ +
+
Select Size
+
+
+ + +
+
[IMG: Fila Men Black Running Shoes]
+
+
Fila Men Black Running Shoes
+
10 Sizes
+
+ ₹3200 + ₹5599 + 42% +
+
+ ★★★★☆ 4.0 +
+
+
+
+ +
+
Select Size
+
+
+
+
+ + +
+ + +
+
+ +
+
+ + Add to Bag +
+
+ +
+ + \ No newline at end of file diff --git a/code/10477/10477_3.html b/code/10477/10477_3.html new file mode 100644 index 0000000000000000000000000000000000000000..04435ca8c6fbf1dda39f9052035c4c9ee13ab704 --- /dev/null +++ b/code/10477/10477_3.html @@ -0,0 +1,291 @@ + + + +Puma Hybrid NX Product Page + + + + +
+ +
+
12:53
+
+ + + + + + + 100% + + + +
+
+ +
+ +
+
+ + + +

Puma Hybrid Nx Men Black Runnin...

+
+
+ + + + + + +
+
+ + +
+ + + 4.0 + + + ₹4119 + + 45% off +
+ + +
+ +
+
[IMG: Puma Softride Enzo Evo Slip SF Unisex Black]
+
+
Puma Softride Enzo Evo Slip SF Unisex Black Ru...
+
11 Sizes
+
+ ₹3849 + ₹6999 + 45% +
+
+ ★★★★★ + 5/5 (1) +
+
+
+
+ +
+
Select Size
+
+
+ + +
+
[IMG: Puma Cell Phase Men Black Running Shoes]
+
+
Puma Cell Phase Men Black Running Shoes
+
8 Sizes
+
+ ₹3569 + ₹6499 + 45% +
+
+ ★★★★★ + 5/5 (1) +
+
+
+
+ +
+
Select Size
+
+
+ + +
+
[IMG: Fila Men Black Running Shoes]
+
+
Fila Men Black Running Shoes
+
7 Sizes
+
+ ₹3200 +
+
+ ★★★★☆ + 4.0 +
+
+
+
+ +
+
Select Size
+
+
+
+ +
+ + +
Highlights
+
+
+
Closure
+
Lace-Ups
+
+
+
Fabric
+
Mesh
+
+ +
+
Pattern
+
Solid/Plain
+
+
+
Sole Material
+
Rubber
+
+ +
+
Warranty
+
3 Months
+
+
+
Occasion
+
Casual
+
+ +
+
Season
+
Spring/Summer
+
+
+
Gender
+
Men
+
+ +
+
Net Qty
+
1N
+
+
+
Color
+
Black
+
+
+ + +
Know The Product
+ +
+
+ +
+
Description
+
+ +
+
+ +
+ PRODUCT STORY: The all-new HYBRID NX Men's Running Shoes is a game-changer in the world of everyday cushioned running shoes. Designed with HYBRID foam and a rubber outsole, this shoe provides excellent cushioning and responsiveness, a combination of the comfort you need for daily wear and the performance you expect when you run. Mesh upper keeps things breathable while the sleek black styling suits casual occasions too. +
+
+ + +
+
+ +
+
+ + Add to Bag +
+
+
+ + \ No newline at end of file diff --git a/code/10477/10477_4.html b/code/10477/10477_4.html new file mode 100644 index 0000000000000000000000000000000000000000..b59f58e54abc28472a149926d26a074108c65180 --- /dev/null +++ b/code/10477/10477_4.html @@ -0,0 +1,223 @@ + + + + +Product Detail - Nykaa + + + +
+ + +
+
12:53
+
+ + 100% +
+
+ + +
+
+ + + +
+
+
Puma Hybrid Nx Men Black Runnin...
+
+ + + + 4.0 + + ₹4119 + + 45% off +
+
+
+ + + + +
+
+ + + +
+
+ + +
+ +
Know The Product
+ +
+
+
+ + + +
Description
+
+ + + +
+ +
+ PRODUCT STORY: The all-new HYBRID NX Men's Running Shoes is a game-changer in the world of everyday cushioned running shoes. Designed with HYBRID foam and a rubber outsole, this shoe flawlessly fuses street style with modern technology. + FEATURES & BENEFITS HYBRID: PUMA's solution for cushioning and responsiveness, a combination of the two best technologies from PUMA IGNITE Foam and NRGY Beads. + DETAILS Knitted upper for breathability, HYBRID foam for optimum cushioning, Lace closure for snug fit, PUMA Wordmark at tongue, PUMA Wordmark at toe box, PUMA Cat logo at counter. +
+ +
+ Read More + + + +
+
+ +
+
+ + + + +
Easy return policy
+
+ + + +
+ +
+ +
Ratings & Reviews
+ +
+
+ + + + +
+
Nykaa is committed to showing genuine and verified reviews.
+
+ +
+
+
4.0/5
+
8 ratings
+
+
+
Overall Rating
+ +
+
+ +
Most Useful Review
+
+
+ + + + + + + + + + + + + + + +
+
No review text available. Be the first to write a detailed review.
+
+ +
+
+ + +
+
+ + + +
+
+ + + + Add to Bag +
+
+ +
+ + \ No newline at end of file diff --git a/code/10477/10477_5.html b/code/10477/10477_5.html new file mode 100644 index 0000000000000000000000000000000000000000..c136eee45abb6be954a7aae6c65ef6bab1222d2d --- /dev/null +++ b/code/10477/10477_5.html @@ -0,0 +1,109 @@ + + + + +Description Page + + + +
+ +
+
+ + + +
+
Description
+
+ + + + +
+
+ + +
+

+ PRODUCT STORY: The all-new HYBRID NX Men's Running Shoes is a game-changer in the world of everyday cushioned running shoes. Designed with HYBRID foam and a rubber outsole, this shoe flawlessly fuses street style with modern technology. +

+

+ FEATURES & BENEFITS HYBRID: PUMA's solution for cushioning and responsiveness, a combination of the two best technologies from PUMA IGNITE Foam and NRGY Beads. +

+

+ DETAILS Knitted upper for breathability, HYBRID foam for optimum cushioning, Lace closure for snug fit, PUMA Wordmark at tongue, PUMA Wordmark at toe box, PUMA Cat logo at counter +

+

+ Explore the entire range of Footwear available on Nykaa. Shop more Puma products here. You can browse through the complete world of Puma Footwear. +

+
+
+ + \ No newline at end of file diff --git a/code/10479/10479_0.html b/code/10479/10479_0.html new file mode 100644 index 0000000000000000000000000000000000000000..38d38b6b262bcc79f20288f2f2fb28092a4a526d --- /dev/null +++ b/code/10479/10479_0.html @@ -0,0 +1,217 @@ + + + + + +Screwdriver Listing + + + +
+ + +
+
10:37
+
+
+ + + + +
100%
+
+
+ + +
+
+ + + +
+
SCREWDRIVER
+
+
+ +
+
+ +
+
+
+ + +
+
+ Category + +
+
+ 1 + Filter +
+
+ + + Price +
+
+ + Sort +
+
+ + +
+
Screwdrivers
+
Cutting Tools
+
Hand Tool Sets
+
+ + +
+
+ +
+
[IMG: Multi screwdriver fan layout]
+
+ +
+
+
Multi-screwdriver letsgrab 8 in 1 ...
+
+
₹299
+
₹599
+
+
50% off
+
+
+ + +
+
[IMG: 8 in 1 Screwdrivers Toolkit]
+
+ +
+
+
8 in 1 Screwdrivers Toolkit
+
+
₹299
+
₹499
+
+
40% off
+
+
+ + +
+
[IMG: Toolkit three pieces]
+
+ +
+
+
8 in 1 Screwdrivers Toolkit
+
+
₹299
+
₹499
+
+
40% off
+
+
+ + +
+
[IMG: Multi screwdriver fan layout]
+
+ +
+
+
Multi-screwdriver letsgrab 8 in 1 ...
+
+
₹299
+
₹599
+
+
50% off
+
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10479/10479_1.html b/code/10479/10479_1.html new file mode 100644 index 0000000000000000000000000000000000000000..c6fa1280ac7ceefe38d1f54d2f0f7cd5bdf877ef --- /dev/null +++ b/code/10479/10479_1.html @@ -0,0 +1,248 @@ + + + + + +Screwdriver Listing + + + +
+ + +
+
10:39
+
+
+
+
+
+
+ +
100%
+
+
+
+ + +
+
+ +
+
SCREWDRIVER
+
+
+ +
+
+ +
+
+
+ + +
+
Category
+
1 Filter
+
₹ ↓ Price
+
⇅ Sort
+
+ + +
+
Screwdrivers
+
Cutting Tools
+
Hand Tool Sets
+
+ + +
+
+
+ + +
+
[IMG: Multi screwdriver set]
+
+ +
+
+
Multi-screwdriver letsgrab 8 in 1 ...
+
+
₹299
+
₹599
+
+
50% off
+
+
+ + +
+
[IMG: 8 in 1 screwdriver toolkit]
+
+ +
+
+
8 in 1 Screwdrivers Toolkit
+
+
₹299
+
₹499
+
+
40% off
+
+
+ + +
+
[IMG: 8 in 1 screwdriver toolkit]
+
+ +
+
+
8 in 1 Screwdrivers Toolkit
+
+
₹299
+
₹499
+
+
40% off
+
+
+ + +
+
[IMG: Multi screwdriver set]
+
+ +
+
+
Multi-screwdriver letsgrab 8 in 1 ...
+
+
₹299
+
₹599
+
+
50% off
+
+
+ +
+
+
+ + +
+ +
Added to wishlist
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10480/10480_0.html b/code/10480/10480_0.html new file mode 100644 index 0000000000000000000000000000000000000000..dbc7feb8f715ebf7d91a8e504b76c916f13d4e3e --- /dev/null +++ b/code/10480/10480_0.html @@ -0,0 +1,264 @@ + + + + + +Product Detail + + + +
+ + +
+
+
+ + + +
+
+ +
+
9960 Bluebonnet Blvd
+
Ask associate
+
+ +
+
+ + + + +
+
+ + + + + +
1
+
+
+
+ + +
+
[IMG: Beef Top Loin New York Strip Steak on Tray]
+
+ + +
+ + + + +
+ + +
+
Beef Top Loin New York Strip Steak Bone In Value Pack - 3.75 Lb
+ +
+ + + + 5.0 + 4 reviews +
+ +
Member Price (valid until 11/23/23)
+ +
+
approx
+
$18.71 ea
+
$37.46
+
($4.99 /lb)
+
+ +
+
+ + + +
+
1 in cart
+
+ + + +
+
+ +
+
Related products
+ View all +
+ +
+
+
+ + + + +
+
[IMG: Beef Cut]
+
APPROX.
+
+ +
+
+ + + + +
+
[IMG: 4 Pack Steaks]
+
APPROX.
+
+ + + + 4.5 +
+
+ +
+
+ + + + +
+
[IMG: Beef Value Pack]
+
APPROX.
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10480/10480_1.html b/code/10480/10480_1.html new file mode 100644 index 0000000000000000000000000000000000000000..f43e2bffbc02d6d53a5db8d57678d5c19bbbb0f7 --- /dev/null +++ b/code/10480/10480_1.html @@ -0,0 +1,359 @@ + + + + + +Cart - Mobile UI + + + +
+ +
+
+
Cart (1)
+
+ + + +
+
+
+ +
+ +
+
+ +
Albertsons
+
+
$18.71
+
+ +
+ + + +
+
+
[IMG: Meat Pack]
+
+
+
$18.71ea
+
approx
+
$37.46
+
+
Beef Top Loin New York Strip Steak Bone In Value Pack - 3.75 Lb
+
$4.99 / lb
+
+
1
+
+ +
+ Apologies, we're not able to guarantee the prices or availability of the items in your list. Please check in store for current prices and availability. +
+
+ +
+
+
Albertsons items (1)
+
$37.46
+
+
+ +
-$18.75
+
+
+
+
Estimated subtotal
+
$18.71
+
+
+ +
+ +
+
+
Est. subtotal
+
+ $37.46 + $18.71 +
+
+
Checkout
+
+ +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10481/10481_0.html b/code/10481/10481_0.html new file mode 100644 index 0000000000000000000000000000000000000000..f2077b09b240684c2d7dc861b5261b03b001938c --- /dev/null +++ b/code/10481/10481_0.html @@ -0,0 +1,243 @@ + + + +Live tracker UI + + + + +
+ + +
+
11:55
+
+
+
+
+
+
+ + +
+
+
+
+ + + +
+
+
Live tracker
+
33min, 1 change
+
+
+
+ + + + +
+
+
+ + +
+
+
+
IC 1940
+
B
+
+
+ + + + + +
+
+
+
+
+ +
+
7:06 PM
+
Bruxelles-Central
+
+ +
+
7:23 PM
+
Halle
+
+
+
+ + +
+
+ + + +
+
+
Change at Halle
+
8min to change
+
+
+ + +
+
+
+
SNCB 3369
+
B
+
+
+ + +
+
+
+
+
+ +
+
7:31 PM
+
Halle
+
+ +
+
7:39 PM
+
Beersel
+
+
+
+ + + + +
+ + \ No newline at end of file diff --git a/code/10481/10481_1.html b/code/10481/10481_1.html new file mode 100644 index 0000000000000000000000000000000000000000..a8ea1b834ff3b4033bf6d6fafe0e3b92a0c088e0 --- /dev/null +++ b/code/10481/10481_1.html @@ -0,0 +1,379 @@ + + + +Omio Search UI - Mock + + + +
+ + +
+
+
11:56
+
^ ^
+
+
+ + + + + + + + + + + + + +
+
+ + +
+
[IMG: Scenic travel illustration with plane, bus and train]
+
+ + +
+
Where to?
+ +
+
+ + + + + +
+
City, station, airport or port
+
+ +
+
+ + + + + +
+
City, station, airport or port
+
+ +
+
+
+ + + + + + +
+
Sat, Nov 4
+
+
+
+ + + + + + +
+
+ Add return
+
+
+ +
+
+ + + + + +
+
1 Adult, No discount card
+
+ +
Search Omio
+ +
Need a place to stay?
+ +
+
+
Book now,
+
pay later
+
[IMG: Hotel desk handshake]
+
+
+
Free cancelation
+
on most stays
+
[IMG: Phone with “Cancelled” sticker]
+
+
+
Get 10% back
+
with mobile wallet
+
[IMG: Reward card and city image]
+
+
+
+ + +
+
+ + + + + +
+
+ + + + + + +
+
+
+ + + + + +
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10481/10481_10.html b/code/10481/10481_10.html new file mode 100644 index 0000000000000000000000000000000000000000..f817bd1e37e9327e5dca7b578da265b455e1369b --- /dev/null +++ b/code/10481/10481_10.html @@ -0,0 +1,335 @@ + + + +Travel Search UI + + + + +
+ + +
+
12:00
+
+ + + + + + + +
+
+ + +
+
[IMG: Travel illustration with plane, bus and fast train]
+
Where to?
+
+ + +
+
+ + + + + Aalst Belgium + + + +
+ +
+ + + + + Brussels-Central Belgium +
+ +
+
+ + + + + Tue, Nov 28 +
+
+ + + + + + Add return +
+
+ +
+ + + + 1 Adult, No discount card +
+ +
Search Omio
+
+ + +
+
Need a place to stay?
+
+
+
[IMG: Hotel receptionist with traveler]
+

Book now,

+

pay later

+
+
+
[IMG: Phone showing cancelled badge]
+

Free cancelation

+

on most stays

+
+
+
[IMG: Mobile wallet and 10% badge]
+

Get 10%

+

with mobile

+
+
+
+ + +
+ + + +
+ +
+ + \ No newline at end of file diff --git a/code/10481/10481_11.html b/code/10481/10481_11.html new file mode 100644 index 0000000000000000000000000000000000000000..2d06be197149bff1e0216e87ddc9c95883f2a03e --- /dev/null +++ b/code/10481/10481_11.html @@ -0,0 +1,275 @@ + + + +Mobile UI Mock + + + +
+ + + + + +
+
+ + + + + +
+
+ + + + + + +
+
+ + + +
+
+
+ + +
+
+
+
+
+
+ + +
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10481/10481_12.html b/code/10481/10481_12.html new file mode 100644 index 0000000000000000000000000000000000000000..25cf622bb9e00cb4bb0ef91362de75ad14147334 --- /dev/null +++ b/code/10481/10481_12.html @@ -0,0 +1,276 @@ + + + +Train Search UI + + + + +
+ +
+
+
12:04
+
+
+ +
+
+ + + + + +
+
+
+ +
+
+ +
+
+ +
+
+ +
+
Aalst › Brussels-Central
+
Tue, Nov 28, 1 passenger
+
+ +
+
+
+ + + +
+
$11
+
0h34m
+
+
+
+ + + +
+
-
+
+
+
+ + + +
+
-
+
+
+
+ +
+
+
+
This icon means you’ve found a mobile ticket
+
+ +
+
Time: Depart at 8:00 AM
+
Stops
+
Duration
+
+ +
Load earlier trains
+ + +
+
CHEAPEST
+
+
B
+
IC
+
+ +
+
+
6:09 AM
+
Aalst
+
+
— 1h05m —
+
+
7:14 AM
+
Brussels-Central
+
+
+ +
+
+ 1 Transfer + +
+
+
+
+ +
+ $11 +
+
+
+
1 • One-way
+
+ + +
+
CHEAPEST
+
+
B
+
IC
+
+ +
+
+
6:54 AM
+
Aalst
+
+
— 0h53m —
+
+
7:47 AM
+
Brussels-Central
+
+
+ +
+
+ 1 Transfer + +
+
+
+
+ +
+ $11 +
+
+
+
1 • One-way
+
+ + +
+
CHEAPEST
+
+
B
+
IC
+
+
+ [More train results preview] +
+
+ +
+ +
+ + \ No newline at end of file diff --git a/code/10481/10481_13.html b/code/10481/10481_13.html new file mode 100644 index 0000000000000000000000000000000000000000..5143fc70f03ce3827b6339b9790c311540cc8bf1 --- /dev/null +++ b/code/10481/10481_13.html @@ -0,0 +1,320 @@ + + + +Train Search UI + + + +
+ + +
+
+
12:04
+
+
^
+
^
+
+
+
+ + + + + + + + + + +
+
+ + +
+
+
+ + + +
+
+
Aalst › Brussels-Central
+
Tue, Nov 28, 1 passenger
+
+
+ +
+ + +
+ + +
+
+
+
+ + + + + + +
+
$11
+
+
0h34m
+
+ +
+
+
+ + + + + + +
+
-
+
+
+ +
+
+
+ + + + +
+
-
+
+
+
+ + +
+ + + + + + + + + +
This icon means you’ve found a mobile ticket
+
+ + +
+
+ + + + Time: Depart at 8:00 AM +
+
Stops
+
Duration
+
+ + +
Load earlier trains
+ + +
+
+
CHEAPEST
+
+ + + + + + +
+
+
+ +
IC
+
+
+
6:09 AM
+
——— 1h05m ———
+
7:14 AM
+
+
+ + +
+
+
TRAVEL TIME - DEPART AT
+ +
+
8
+
:
+
00
+
AM
+
+ +
+
9
+
15
+
PM
+
+ +
Apply
+
+ +
+
+
+ + \ No newline at end of file diff --git a/code/10481/10481_14.html b/code/10481/10481_14.html new file mode 100644 index 0000000000000000000000000000000000000000..088fa2d27ee239d1cf5ace3b82f3cc0d77b5444d --- /dev/null +++ b/code/10481/10481_14.html @@ -0,0 +1,361 @@ + + + +Train Booking UI + + + +
+ + +
+
12:05
+
+
+
+
+
+
+ + + + + +
+ + +
+
+
+ +
$11
+
+
0h34m
+
+
+
+ +
-
+
+
+
+
+ +
-
+
+
+
+ + + + + +
+
+ + Time: Depart at 8:00 AM +
+
+ + Stops +
+
+ + Duration +
+
+ +
Load earlier trains
+ + +
+
CHEAPEST
+
+
+
+
+
+
6:09 AM
+
— 1h05m —
+
7:14 AM
+
+
+
+
+
+
+ +
+ + +
+
+
TRAVEL TIME - DEPART AT
+ +
+
+
6
+
7
+
8
+
+ +
:
+ +
+
45
+
00
+
15
+
+ +
+
PM
+
AM
+
PM
+
+
+ +
Apply
+
+ +
+ + \ No newline at end of file diff --git a/code/10481/10481_2.html b/code/10481/10481_2.html new file mode 100644 index 0000000000000000000000000000000000000000..49db8a741b0fc4318af945a3b724712c0c886311 --- /dev/null +++ b/code/10481/10481_2.html @@ -0,0 +1,305 @@ + + + +Departure Screen Mock + + + +
+ + +
+
+
11:56
+
+ + +
+
+ +
+
+
+
+ + + + + + + +
+
+ + + + + + +
+
+
+ + +
+
×
+
Departure
+
+ + +
+
+
City, station, airport or port
+
+ + +
+ + + +
Use location
+
+
+ + +
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
q
+
w
+
e
+
r
+
t
+
y
+
u
+
i
+
o
+
p
+
+ +
+
a
+
s
+
d
+
f
+
g
+
h
+
j
+
k
+
l
+
+ +
+
+
z
+
x
+
c
+
v
+
b
+
n
+
m
+
+
+ +
+
?123
+
,
+
+
space
+
.
+
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10481/10481_3.html b/code/10481/10481_3.html new file mode 100644 index 0000000000000000000000000000000000000000..2062ee79c4db661946bd6dfecfedbe579de4b3d8 --- /dev/null +++ b/code/10481/10481_3.html @@ -0,0 +1,344 @@ + + + + +Departure Screen Mock + + + +
+ + +
+
11:57
+
+ + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+ + + +
+
Departure
+
+ + +
+
+
+
Aalst
+
+
+ + +
+
+ + + + + +
Aalst Belgium
+
+
+
+ + + + + + + +
Aalst Belgium
+
+
+
+ + + + + + + +
Aalst-Kerrebroek Belgium
+
+
+
+ + +
+
+
+ Aalst + | + Aalat + | + Salat +
+
+ + + + + + +
+
+ +
+
+
q
w
e
r
t
y
u
i
o
p
+
+
+
a
s
d
f
g
h
j
k
l
+
+
+
+
z
x
c
v
b
n
m
+
+
+
+
?123
+
,
+
space
+
.
+
+
+ +
+
+ +
+ + \ No newline at end of file diff --git a/code/10481/10481_4.html b/code/10481/10481_4.html new file mode 100644 index 0000000000000000000000000000000000000000..e96763adf33eeda7708b863172c3ff5bf91fc43f --- /dev/null +++ b/code/10481/10481_4.html @@ -0,0 +1,410 @@ + + + + +Mobile UI Render + + + +
+ + +
+
11:57
+
+ +
+
+
+ + + + + + +
+
+ + + + + +
+
+
+ + +
+
[IMG: Transport illustration with plane, bus and train]
+
+ + +
+
Where to?
+ + +
+
+ + + +
+
Aalst Belgium
+
+ + + + + +
+
+ + +
+
+ + + + +
+
City, station, airport or port
+
+ + +
+
+
+ + + + +
+
Sat, Nov 4
+
+
+
+ + + + +
+
+ Add return
+
+
+ + +
+
+ + + + +
+
1 Adult, No discount card
+
+ + +
Search Omio
+ + +
Need a place to stay?
+ +
+
+
Book now,
pay later
+
[IMG: Reception desk and traveler]
+
+
+
Free cancelation
+
on most stays
+
[IMG: Phone showing cancelled banner]
+
+
+
Get 10% back
+
with mobile app
+
[IMG: Loyalty points on phone]
+
+
+
+ + +
+ + + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10481/10481_5.html b/code/10481/10481_5.html new file mode 100644 index 0000000000000000000000000000000000000000..62fd76afda4c126da4dc75c528b03af4435ac417 --- /dev/null +++ b/code/10481/10481_5.html @@ -0,0 +1,198 @@ + + + +Departure Input Screen + + + + +
+ +
+
11:58
+
+ + + + + + + + +
+
+ + +
+
+
+ + + +
+
Departure
+
+ +
+
+
+
City, station, airport or port
+
+
+ +
+ + + +
Use location
+
+ +
+
+ + +
+
+
+
😊
+
GIF
+
+
+
🎨
+
🎤
+
+ +
+
+
q
w
e
r
t
+
y
u
i
o
p
+
+
+
a
s
d
f
g
+
h
j
k
l
+
+
+
+
z
x
c
v
b
n
m
+
+
+
+
?123
+
,
+
🙂
+
+
.
+
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/code/10481/10481_6.html b/code/10481/10481_6.html new file mode 100644 index 0000000000000000000000000000000000000000..1181955fe843fb443325221ab3e2ae9c47e5f091 --- /dev/null +++ b/code/10481/10481_6.html @@ -0,0 +1,291 @@ + + + +Departure UI + + + +
+ + +
+
11:58
+
+
+ + + + +
+
+ + + + + + +
+
+
+ + +
+
+ + + +
+
Departure
+
+ + +
+
+
+
Brussels-Centraal
+
+
+ + +
+
+ + + +
+
Brussels-Central Belgium
+
+
+ +
+ + +
+
+
+ + GIF +
+
+ + Settings +
+
+ + Translate +
+
+ + Theme +
+
+ + Mic +
+
+ +
+
+
q
+
w
+
e
+
r
+
t
+
y
+
u
+
i
+
o
+
p
+
+
+
a
+
s
+
d
+
f
+
g
+
h
+
j
+
k
+
l
+
+
+
+
z
+
x
+
c
+
v
+
b
+
n
+
m
+
+ +
+
+ +
+
?123
+
,
+
😊
+
+
.
+
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10481/10481_7.html b/code/10481/10481_7.html new file mode 100644 index 0000000000000000000000000000000000000000..f0b77baaaeb30501c39b89f812108f4b8ea33e52 --- /dev/null +++ b/code/10481/10481_7.html @@ -0,0 +1,356 @@ + + + + +Travel Search UI + + + +
+ + +
+
11:59
+
+
+
+ +
+ + + + + +
+ +
+ + + + + +
+
+
+ + +
+
[IMG: Transport illustration with plane, bus and train]
+
+ + +
+
Where to?
+ + +
+
+ + + + +
+
Aalst Belgium
+
+ + + +
+
+ + +
+
+ + + +
+
Brussels-Central Belgium
+
+ + +
+
+
+ + + + + +
+
Sat, Nov 4
+
+
+
+ + + + +
+
+ Add return
+
+
+ + +
+
+ + + + +
+
1 Adult, No discount card
+
+ + + +
Need a place to stay?
+ +
+
+
Book now,
+
pay later
+
[IMG: Hotel promo]
+
+
+
Free cancelation
+
on most stays
+
[IMG: Cancel phone graphic]
+
+
+
Get 10%
+
with mobile
+
[IMG: Mobile perks]
+
+
+ +
+ + +
+ + + +
+ +
+ + \ No newline at end of file diff --git a/code/10481/10481_9.html b/code/10481/10481_9.html new file mode 100644 index 0000000000000000000000000000000000000000..aa63c17cb690fa1391750a3a1e6d3381b96684b5 --- /dev/null +++ b/code/10481/10481_9.html @@ -0,0 +1,314 @@ + + + + +Date Picker UI + + + +
+ + +
+
11:59
+
+ + + + + + + + + + + +
+
+ + +
+
+ + + +
+
Choose date
+
+ + +
+
Tue, Nov 28
+
+ Add Return
+
+ + +
+
S
M
T
W
T
F
S
+
+ + +
+
NOVEMBER 2023
+
+ +
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
+
+
+
+ + +
+
DECEMBER 2023
+
+
1
+
2
+
+ +
3
+
4
+
5
+
6
+
7
+
8
+
9
+ +
10
+
11
+
12
+
13
+
14
+
15
+
16
+ +
17
+
18
+
19
+
20
+
21
+
22
+
23
+
+
+ + +
+
Confirm
+
+ + +
+
+
+
+ + \ No newline at end of file diff --git a/code/10482/10482_0.html b/code/10482/10482_0.html new file mode 100644 index 0000000000000000000000000000000000000000..2270ef8aee6f899722a2eac8aa28b5c62bdb56d5 --- /dev/null +++ b/code/10482/10482_0.html @@ -0,0 +1,383 @@ + + + +YouTube Style Mobile UI + + + + +
+ + +
+
9:50
+
+ + + + + + + + + + + + + + +
+
+ + +
+ + + +
+ + +
Up next
+
+
+ [IMG: Origami Snails Thumbnail] +
8:07
+
+
+
Easy Origami Snail || Paper Moving toy Pop It
+
Gary Easy Origami
+
+
+
+
Cancel
+
Play now
+
+ +
+ + +
Easy Origami ELEPHANT || Cute Origami paper animals
+
384K views • 2y ago • #ELEPHANT #Origami #Easy • …more
+ +
+
+
G
+
+
Gary Easy Origami
+
203K
+
+
+ +
+ + +
+
+ + + + 4.3K +
+
+ + + + Comment +
+
+ + + + Share +
+
+ + + + + + Remix +
+
+ + + + + Download +
+
+ + +
+
Comments 134
+
+
P
+
Toooo hard to make but it’s so nice 👏👏👏😺
+
+
+ + +
+
[IMG: Booking.com Interior Room Photo]
+
+
Open app
+
+ + + +
+
+
Booking.com: Hotels & Flights
+
+ तुरंत कन्फर्मेशन पाए +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10482/10482_1.html b/code/10482/10482_1.html new file mode 100644 index 0000000000000000000000000000000000000000..2b7992b3a01a8bc6226e14022f071e317095afaf --- /dev/null +++ b/code/10482/10482_1.html @@ -0,0 +1,293 @@ + + + +YouTube Search - Origami Elephant + + + +
+ + +
+
9:50
+
+
+
+
+
+
+
+ + +
+
+ +
+
+
Easy original Elepha...
+
+
+
+ +
+
+ +
+
+
+ + +
+ + +
+ [IMG: Thumbnail - Two Origami Elephants (Yellow & Blue) with "Origami ELEPHANT" text] +
9:37
+
+
+
[AV]
+
+
Easy Origami ELEPHANT || Cute Origami paper animals
+
Gary Easy Origami · 384K views · 2 years ago
+
+
+
+ + +
+ [IMG: Thumbnail - Pink and Purple Origami Elephants facing each other] +
9:22
+
+
+
[AV]
+
+
Cute Origami Elephant - Easy Paper Elephant Making
+
Easy Paper Origami · 779K views · 1 year ago
+
+
+
+ + +
+
+
Shorts
+
+ +
+ + +
+
[IMG: Origami Snail Preview]
+
+
Origami Snail || Paper Moving toy
+
Gary Easy Origami
+
+
+
+ +
+
+
+
+
+ + +
+ + + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10482/10482_11.html b/code/10482/10482_11.html new file mode 100644 index 0000000000000000000000000000000000000000..f598d1675606345c24d6f8cde82f35e24878d7fd --- /dev/null +++ b/code/10482/10482_11.html @@ -0,0 +1,248 @@ + + + + +YouTube Speed Menu Mock + + + +
+ + +
+
9:57
+
+ + + + +
+
+
+
+ + +
+
+
[IMG: Singapore indoor garden video frame]
+
+ + + + + + + + + + + + + + + + CC + + + + + + +
+ In 2020, Changi was voted
+ the world's best airport for the 8th time in a row. +
+ + +
+
+
+
+
+
+
7:43 / 12:49 · 5. Changi Airport
+
+
+ + +
TOP 10 things to do in SINGAPORE | Travel Guide 4K
+
1.8M views · 3y ago · #singapore #travelguide · ...more
+ + +
+
+
[IMG]
+
+ Hungry Passport + 244K +
+
+
Subscribe
+
+ + +
+
+ + 15K +
+
+ +
+
+ + Share +
+
+ + Remix +
+
+ + Download +
+
+ + +
+
+
+
+
0.25x
+
0.5x
+
0.75x
+
+ + Normal +
+
1.25x
+
1.5x
+
1.75x
+
2x
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10482/10482_12.html b/code/10482/10482_12.html new file mode 100644 index 0000000000000000000000000000000000000000..d1de211dff7782fa9ea61c612661c0ec473e5eed --- /dev/null +++ b/code/10482/10482_12.html @@ -0,0 +1,270 @@ + + + +Mobile UI - YouTube Style + + + + +
+ + +
+
9:58
+
+
+
+
+
+
+ +
+
+ +
+
+
+ + +
+
[IMG: Video frame - Singapore Travel]
+ +
+
+
+
+
+
+
+
+
+
+
+
+ +
+ +
+ +
Some of the main attractions in the airport include:
+ +
+
8:01 / 12:49 · 5. Changi Airport
+
+
+ +
+
+
+
+
+ + +
+
TOP 10 things to do in SINGAPORE | Travel Guide 4K
+
1.8M views · 3y ago
+
+
#singapore
+
#travelguide
+
#more
+
+ +
+
+
Logo
+
+
Hungry Passport
+
244K subscribers
+
+
+ +
+ +
+
+
+ 15K +
+
+
+ Share +
+
+
+ Remix +
+
+
+ Download +
+
+ +
+
Comments 453
+
+
🐣 Top comment
+
Singapore is the country that I never get tired of visiting. Cleanest and most efficient country of the wo...
+
+
+ +
Shop the Hungry Passport store
+
From Spring
+
+
+
[IMG: Blue Hoodie - Los Angeles print]
+
₹3,842.92
+
+
+
[IMG: Navy T‑Shirt - Los Angeles print]
+
₹2,046.77
+
+
+
[IMG: Black T‑Shirt - Los Angeles print]
+
₹2,210.58
+
+
+ +
+
Go City - Singapore - Buy Direct
+
Official Site
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10482/10482_2.html b/code/10482/10482_2.html new file mode 100644 index 0000000000000000000000000000000000000000..12ccb1b110c34f7af27e66bd132f761c69f17059 --- /dev/null +++ b/code/10482/10482_2.html @@ -0,0 +1,323 @@ + + + +Origami Elephant Search - Mock + + + +
+ + +
+
9:52
+
+ + + + + + +
+
+ + +
+ + + +
Easy original Elephan...
+
+ + + + + + + + + + + + + + +
+
+ + +
+ [IMG: Origami Elephant Banner] +
9:37
+
+ + +
+
[Avatar]
+
+
Easy Origami ELEPHANT || Cute Origami paper animals
+
Gary Easy Origami · 384K views · 2 years ago
+
+
+
+
+
+
+
+ + +
+ [IMG: Two Origami Elephants] +
9:22
+
+ + +
+
[Channel Icon]
+
+
Cute Origami Elephant - Easy Paper Elephant Making
+
Easy Paper Origami · 779K views · 1 year ago
+
+
+
+
+
+
+
+ + +
+
+
Shorts
+
+
+
+ [IMG: Blue Paper Clip - Short] +
0:15
+
+
+ [IMG: Origami Close-up - Short] +
0:19
+
+
+ [IMG: Fun Craft - Short] +
0:12
+
+
+ +
+ + +
+ + + + + +
+ +
+ + \ No newline at end of file diff --git a/code/10482/10482_3.html b/code/10482/10482_3.html new file mode 100644 index 0000000000000000000000000000000000000000..84b53a0e8bbac406e2471e30185ae2be88b561a4 --- /dev/null +++ b/code/10482/10482_3.html @@ -0,0 +1,422 @@ + + + + +YouTube Search UI Mock + + + +
+ + +
+
+
9:52
+
+
+
+
+
+
+
+
+
+
+ + + + + + +
+
+ + + + + +
+
+
+ + +
+
+ +
+
+
Search YouTube
+
+
+ + + + + +
+
+ + +
+ +
+
+ + + + +
+
easy original elephant || cute origami paper animals
+
[IMG: Origami elephants]
+
+ + + + +
+
+ +
+
+ + + + +
+
how to make a paper airplane
+
[IMG: Paper airplane]
+
+ + + + +
+
+ +
+
+ + + + +
+
how to fold a paper airplane that flies far
+
[IMG: Paper airplane]
+
+ + + + +
+
+ +
+
+ + + + +
+
elephant paper craft
+
[IMG: Origami elephants]
+
+ + + + +
+
+ +
+
+ + + + +
+
roar by katy perry
+
[IMG: Music video thumbnail]
+
+ + + + +
+
+ +
+
+ + + + +
+
how to make clay toys
+
[IMG: Clay toys tutorial]
+
+ + + + +
+
+ +
+
+ + + + +
+
paper flowers
+
[IMG: Paper flower bouquet]
+
+ + + + +
+
+ +
+
+ + + + +
+
easy paper flower|| paper tulip flower ||paper craft make sure
+
[IMG: Paper tulip tutorial]
+
+ + + + +
+
+ +
+
+ + + + +
+
indian bike driving 3d
+
[IMG: Bike driving 3D]
+
+ + + + +
+
+ +
+
+ + + + +
+
creativity with dough || children activity network
+
[IMG: Kids dough crafts]
+
+ + + + +
+
+ +
+ + +
+ + + + + +
+ + +
+
+
+ +
+
+ +
+
GIF
+
+ +
+
+ +
+
+ + + +
+
+ + + + +
+
+ +
+
+
q
w
e
r
t
+
y
u
i
o
p
+
+
+
a
s
d
f
g
+
h
j
k
l
+
+
+
+ +
+
z
x
c
v
b
+
n
m
+
+ +
+
+
+
?123
+
,
+
🙂
+
+
.
+
+ +
+
+ + + + +
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10482/10482_5.html b/code/10482/10482_5.html new file mode 100644 index 0000000000000000000000000000000000000000..30bd2a1dbec3b6b16d11f5f06ccd99395b7b2a16 --- /dev/null +++ b/code/10482/10482_5.html @@ -0,0 +1,294 @@ + + + +YouTube Search - Static Mock + + + +
+ + +
+
9:53
+
+
+
+
+
+
+ +
+
+ + + + + +
[IMG: Merlion statue at night - Singapore]
+ + +
+
Visit site
+ + + + + +
+ + +
+
TripCrafters - Find Cheap Singapore Packages
+
Expert Local Advice. Get Amazing Discounts On Packages.
+ + +
+
Top Singapore Packages
+
Working Process
+
Tour Packages
+
+
+ + +
[IMG: "TOP 10 SINGAPORE" - Gardens by the Bay neon trees thumbnail]
+ + +
+
+ + + + +
Home
+
+
+ + + +
Shorts
+
+
+
+ + + + + +
+
+
+ + + + +
Subscriptions
+
+
+ + + + + +
Library
+
+
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10482/10482_6.html b/code/10482/10482_6.html new file mode 100644 index 0000000000000000000000000000000000000000..fb1e730624956a98b7933b862663747359a9b30e --- /dev/null +++ b/code/10482/10482_6.html @@ -0,0 +1,292 @@ + + + + +Mobile UI Mock - YouTube Search Results + + + +
+ + +
+
9:54
+
+ + + + + +
+
+
+ + +
+
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+
+ + +
+ +
+
Top Singapore Packages
+
Working Process
+
Tour Packages
+
+
+ + +
+
4K
+
[IMG: Supertree Grove night lights - "TOP 10 SINGAPORE"]
+
12:49
+
+ + +
+
Logo
+
+
TOP 10 things to do in SINGAPORE | Travel Guide 4K
+
Hungry Passport · 1.8M views · 3 years ago
+
+
+ +
+
+ + +
+
+
[IMG]
+
Intro | 10. Marina Bay Waterfront Promenade...
+
+
11 chapters ▾
+
+ + +
+
[IMG: Collage - rooftop deck, LED light tunnel, Marina Bay couples]
+
10:15
+
+ + +
+
DP
+
+
TOP 10 things to do in SINGAPORE | A Travel Guide | 2022
+
Prabhi & Harsh · 702K views · 1 year ago
+
+
+ +
+
+ + +
+ + +
+ +
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10482/10482_7.html b/code/10482/10482_7.html new file mode 100644 index 0000000000000000000000000000000000000000..ab548f52c8ab6153ea98ae1040f7e0b2195b5595 --- /dev/null +++ b/code/10482/10482_7.html @@ -0,0 +1,321 @@ + + + + +Mobile UI - Video Page + + + +
+ + +
+
9:55
+
+ + + + +
+
+ + +
+ [IMG: Stone relief park wall - travel video cover] +
7. FORT CANNING PARK
+
+ + Includes paid promotion +
+
+ + +
+
TOP 10 things to do in SINGAPORE | Travel Guide 4K
+
+ 1.8M views • 3y ago + #singapore + #travelguide + ...more +
+ +
+
+
[Logo]
+
+
Hungry Passport
+
244K
+
+
+ +
+ +
+
+ + 15K +
+
+ + Comment +
+
+ + Share +
+
+ + Remix +
+
+ + Download +
+
+ +
+
+ Comments 453 +
+
+
👍
+
Singapore is the country that I never get tired of visiting. Cleanest and most efficient country of the wo…
+
+
+ +
Shop the Hungry Passport store
+
From Spring
+ +
+
+
[IMG: Blue Hoodie - Los Angeles print]
+
₹3,842.92
+
+
+
[IMG: Navy T‑Shirt - Los Angeles print]
+
₹2,046.77
+
+
+
[IMG: Black T‑Shirt - Los Angeles print]
+
₹2,210.58
+
+
+ +
+
+ + +
+
Go City® - Singapore - Buy Direct - Official Site
+
+ +
+ + \ No newline at end of file diff --git a/code/10482/10482_8.html b/code/10482/10482_8.html new file mode 100644 index 0000000000000000000000000000000000000000..44ed6ae70e242d7139dd868a68ed7261afebe028 --- /dev/null +++ b/code/10482/10482_8.html @@ -0,0 +1,362 @@ + + + +YouTube Style Video Page - Singapore + + + +
+ + +
+
+ 9:55 + + + + +
+
+ + + + + + + + + + +
+
+ + +
+
[IMG: Singapore riverside night view with boats]
+ +
+
+
+
+ + +
+
+
+
+ + +
+
+ + CC +
+
+ + +
+
+ + +
+
+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
5:11 / 12:49 • 6. Shopping
+
+ + +
+
+
+
+
+
+
+
+ + +
+
TOP 10 things to do in SINGAPORE | Travel Guide 4K
+
1.8M views • 3y ago • #singapore #travelguide ...more
+ +
+
+
[Avatar]
+
+
Hungry Passport
+
244K
+
+
+ +
+ + +
+
+ + Like + 15K +
+
+ + Comments +
+
+ + Share +
+
+ + Remix +
+
+ + Download +
+
+ + +
+
+ Comments + 453 +
+
+
😊
+
+ Singapore is the country that i never get tired of visiting. Cleanest and most efficient country of the world... +
+ + + +
+
+ + +
Shop the Hungry Passport store
+
From Spring
+ +
+
+
[IMG: Los Angeles hoodie]
+
₹3,842.92
+
+
+
[IMG: Los Angeles T-Shirt - Navy]
+
₹2,046.77
+
+
+
[IMG: Los Angeles T-Shirt - Black]
+
₹2,210.58
+
+
+
[IMG: Los Angeles Hoodie - White]
+
₹—
+
+
+ + + +
+ +
+ + \ No newline at end of file diff --git a/code/10484/10484_0.html b/code/10484/10484_0.html new file mode 100644 index 0000000000000000000000000000000000000000..595e7fa77777bf96445772069173c073c1343d53 --- /dev/null +++ b/code/10484/10484_0.html @@ -0,0 +1,247 @@ + + + + + +Home Workout UI + + + +
+ + +
+
+ 11:01 +
+
+
+
+
+
+
+ + + + + + + + + + + + + +
+
+ +
+
HOME WORKOUT
+ + +
+
+
0
+
WORKOUT
+
+
+
0
+
KCAL
+
+
+
0
+
MINUTE
+
+
+ + +
+
+
WEEK GOAL
+
0/4
+
+
+
[IMG: Goal item]
+
[IMG: Goal item]
+
[IMG: Goal item]
+
+
+ + +
+

FULL
BODY 7X4
CHALLENGE

+

Start your body-toning journey to target all muscle groups and build your dream body in 4 weeks!

+
START
+
[IMG: Muscular torso]
+
+ + +
BEGINNER
+ + +
+
[IMG: Man doing sit-ups]
+
+
+ + + + + + + + +
+
+
ABS BEGINNER
+
20 MINS • 16 EXERCISES
+
+
+
+ + +
+ + + + +
+
+ +
+ + \ No newline at end of file diff --git a/code/10484/10484_1.html b/code/10484/10484_1.html new file mode 100644 index 0000000000000000000000000000000000000000..d99a4abc73d86682ea11267a4cac83b3a6b94e9e --- /dev/null +++ b/code/10484/10484_1.html @@ -0,0 +1,335 @@ + + + + + +7x4 Challenge + + + +
+ + +
+
[IMG: Fitness Hero]
+
+ +
+
+ + + + + +
7X4 CHALLENGE
+
+ + + + + + +
+ +
+
Start your body-toning journey to target all muscle groups and build your dream body in 4 weeks!
+
+ +
+
28 Days left
+
0%
+
+
+
+ + +
+
+
+ + + + +
+
+ + + +
+
+ + + +
+ + +
+
+
+
+ + + +
+ WEEK 1 +
+
1/7
+
+
+
+
1
+
+ +
+
2
+
+ +
+
3
+
+ +
+
4
+
+ + + + + + + +
1
+
+ +
5
+
+ +
+
6
+
+ +
+
7
+
+ +
+
+ + + + + + +
+
+
+
+ + +
+
+
+
+ + + +
+ WEEK 2 +
+
+
+
+
1
+
+
2
+
+
3
+
+
4
+
+ + + +Workout Day UI + + + +
+ +
+
+
11:05
+
+ + + + + + + + + + + + + + + + +
+
+ +
+ + + +
+ +
[IMG: Fitness hero]
+ +
+
Day 1
+
FULL BODY
+
+
+ +
+
+
+
9 mins • 11 Workouts
+
+ +
+
+
+ + + +
+
[IMG: Exercise illustration]
+
+
JUMPING JACKS
+
00:20
+
+
+ +
+
+ + + +
+
[IMG: Exercise illustration]
+
+
INCLINE PUSH-UPS
+
x10
+
+
+ +
+
+ + + +
+
[IMG: Exercise illustration]
+
+
KNEE PUSH-UPS
+
x6
+
+
+ +
+
+ + + +
+
[IMG: Exercise illustration]
+
+
PUSH-UPS
+
x6
+
+
+ +
+
+ + + +
+
[IMG: Exercise illustration]
+
+
WIDE ARM PUSH-UPS
+
x6
+
+
+
+
+ +
+ + + + + +
Adjust
+
+ +
+
Start
+
+ +
+
[IMG: KOHLER logo]
+
+
Spacity by Kohler AD
+
Give your bathroom a premium essence with the ultimate in bathroom experience
+
+
+ + + + + + KNOW MORE! +
+
+ +
+ +
+ + \ No newline at end of file diff --git a/code/10486/10486_0.html b/code/10486/10486_0.html new file mode 100644 index 0000000000000000000000000000000000000000..82b708898d1f85e965da6c3b88d2678bf9c4c4fa --- /dev/null +++ b/code/10486/10486_0.html @@ -0,0 +1,454 @@ + + + + + +Search - Sports shoes for men + + + +
+ + +
+
2:15
+
+
+ + + + + + + +
+
+ + +
+
+ + + +
+
sports shoes for men
+
+ + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + + Sort +
+
+ + + + + + + + Filter +
+
+ + +
+
+ + +
+
+
[IMG: Nike Precision 5 Basketball Shoes]
+
+ + + +
+
+
+
NIKE
+
Precision 5 Basketball Shoes...
+
₹5,695
+
+ + + + + + + (911) +
+
+
+ + +
+
+
[IMG: Nike Revolution 7 WIDE Running]
+
+ + + +
+
+
+
NIKE
+
REVOLUTION 7 WIDE Running...
+
₹3,695
+
+ + + + + + (26) +
+
+
+ + +
+
+
[IMG: Nike Downshifter 11 Running Shoe]
+
+ + + +
+
+
+
NIKE
+
Downshifter 11 Running Shoes...
+
₹3,995
+
+ + + + + + (203) +
+
+
+ + +
+
+
[IMG: Nike LeBron Witness 6 EP Basketball]
+
+ + + +
+
+
+
NIKE
+
LeBron Witness 6 EP Basketb...
+
₹8,295 ₹6,884 17% off
+
+ + + + + + (87) +
+
+
+ +
+
+ + +
+ + + + + + +
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10486/10486_1.html b/code/10486/10486_1.html new file mode 100644 index 0000000000000000000000000000000000000000..5b0385216c7466710f6b5ab8091b5835f0380164 --- /dev/null +++ b/code/10486/10486_1.html @@ -0,0 +1,232 @@ + + + + + +Product Detail - Running Shoes + + + +
+ + +
+
2:15
+
+ + + + + + + + + +
+ + + 62% +
+
+
+ +
+ +
+
[IMG: Black Nike Running Shoe]
+
+ +
+
+ +
+ + +
+
[IMG]
+
[IMG]
+
[IMG]
+
+ 5
+
+ + +
Downshifter 11 Running Shoes For Men (Black)
+ + +
₹3,995
+
+ + + Free Delivery +
+
Free Delivery
+ + +
+
+ + + + + +
+
7,814 ratings & 688 reviews
+
+ +
+ + +
+ + Available offers +
+ + +
+ + View Similar +
+ +
+ + +
+
Size- UK/India
+
+ + Size Chart +
+
+ +
+
6
+
7
+
8
+
9
+
+3 more
+
+
+
+ + +
+
Add to cart
+
Buy Now
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10486/10486_3.html b/code/10486/10486_3.html new file mode 100644 index 0000000000000000000000000000000000000000..7183a96a4f47723eb6afb3ec4dbb97a82ac9a684 --- /dev/null +++ b/code/10486/10486_3.html @@ -0,0 +1,242 @@ + + + + + +Product Details + + + +
+ + +
+
Product Details
+
+ + +
+
[IMG: Black Nike Running Shoe]
+
+
NIKE Downshifter 11 Running Shoes For Men
+
₹3,995
+
+
+ + +
+
Specifications
+
More Info
+
+
+ + +
+
Key Features
+
• Colour: Black
+
• Outer Material: PU
+ +
General
+ +
+
Color
+
Black
+
+
+
Outer material
+
PU
+
+
+
Model name
+
Downshifter 11
+
+
+
Ideal for
+
Men
+
+
+
Occasion
+
Sports
+
+
+
Type For Sports
+
Running Shoes
+
+ +
Product Details
+
+
Care instructions
+
Wipe with a clean, dry cloth
+
+
+ + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10489/10489_1.html b/code/10489/10489_1.html new file mode 100644 index 0000000000000000000000000000000000000000..51d2b8cdf7407b7fb25b888e6338c82a532a25b4 --- /dev/null +++ b/code/10489/10489_1.html @@ -0,0 +1,233 @@ + + + + + +Language Game UI + + + +
+ + +
+
12:04
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+ + + +
+
+ + + +
+
+ A +
+
+ + +
+
User
+

Move the word to the correct answer

+
+ + +
+
+ +
+
[IMG: Black Jacket]
+
jacket
+
जैकेट
+
+ +
+
[IMG: Red Convertible Car]
+
कार
+
+
+
+ + +
bag
+ + +
+
+ +
+
[IMG: Blue Jeans]
+
जीन्स
+
+ +
+
[IMG: Brown Leather Bag]
+
थैला
+
+
+
+ + +
+ + + +
+
+ +
+ + \ No newline at end of file diff --git a/code/10489/10489_11.html b/code/10489/10489_11.html new file mode 100644 index 0000000000000000000000000000000000000000..e6019b359c2b97cfdfcfb9379fbbfad994cb5705 --- /dev/null +++ b/code/10489/10489_11.html @@ -0,0 +1,344 @@ + + + + + +UI Render + + + +
+ + +
+
12:09
+
+
+ + + + + +
+
+ + + + +
+
+ + + + +
+
+
+
+ + +
+ + + +
+ + +
+ + + +
+ + +
+
+
A
+
+ + +
+
[IMG: User Avatar]
+
Swipe up/down
+
+ + +
+ + + +
+ + +
+
जैकेट
+ +
[IMG: Black Jacket]
+ +
jeans
+ +
[IMG: Blue Jeans]
+ + +
+ + +
+ + + + + +
+ + +
+ + + +
+ + +
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10489/10489_35.html b/code/10489/10489_35.html new file mode 100644 index 0000000000000000000000000000000000000000..a8d7cdfdde5ceb17eb628848fa09ac3e9edacbf6 --- /dev/null +++ b/code/10489/10489_35.html @@ -0,0 +1,322 @@ + + + + +Translate Screen + + + +
+ +
+ +
+
+ + + + +
+
+ A + +
+
+ +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ +
+
[IMG: User Avatar]
+
Translate this sentence
+
+ +
+
+ + + + + +
+
jeans
+
+ +
+
[IMG: Jeans]
+
+ +
+
+
+ + + + +
+
+ +
+
स्
+
जी
+
+ +
+
+
+
+
+ +
+ +
+ + \ No newline at end of file diff --git a/code/10489/10489_40.html b/code/10489/10489_40.html new file mode 100644 index 0000000000000000000000000000000000000000..01ff8da321c391e9eaba222b4e0cbac323be5034 --- /dev/null +++ b/code/10489/10489_40.html @@ -0,0 +1,400 @@ + + + + + +Translation Quiz UI + + + +
+ + +
+
12:28
+
+ + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+
+
+
+
+
+ + +
+ + + +
+ + + + + +
+
+ + A +
+
+ + +
+
[IMG: User Avatar]
+
Select the correct translation
+
+ + +
+ I have a pair of jeans and a jacket. +
+ + +
+
+
मेरे पास एक कार है।
+
+
+
+
उसके पास एक काला बैग है।
+
+
+
+
मेरे पास एक जोड़ी जीन्स और एक जैकेट हैं।
+
+
+
+ + +
+ +
+ + + + +
+
+ + +
+
+
+
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10489/10489_47.html b/code/10489/10489_47.html new file mode 100644 index 0000000000000000000000000000000000000000..58a0153f7bbd58eee872db6325315b5e6af0b770 --- /dev/null +++ b/code/10489/10489_47.html @@ -0,0 +1,382 @@ + + + + + +UI Render + + + +
+ +
+
12:31
+
+ + + + + + + + + + + +
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+ + + +
+ + +
+
है
+
A
+
+ + +
+ + + + + + + + + +
+ + +
+
[IMG: User Avatar]
+
+ You are correct + + + + + + +
+
+ + +
+ मेरे पास एक कार है। +
+ + +
+
I have a car.
+
+ + + + +
+
+ + +
+
+
+
+ + +
Continue
+ + +
+
+ + \ No newline at end of file diff --git a/code/10489/10489_49.html b/code/10489/10489_49.html new file mode 100644 index 0000000000000000000000000000000000000000..74772d0a59b0eaf26eb2bb50fe50a112f0b49ce4 --- /dev/null +++ b/code/10489/10489_49.html @@ -0,0 +1,348 @@ + + + + + +Lesson Completed + + + +
+ + +
+
12:32
+
+ + + + + + + + + + + + + + + + + +
+
+ + +
+

Congratulations!

+
You completed the lesson.
+ +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ +
+13 points
+ +
+
+
+
+
+
+ + + + + + 1 +
+
+ 2 + + + + + +
+
+
+ + +
+
+
+
1
+
2
+
3
+
4
+
+
days
+
+ + +
+
[IMG: Abstract brain graphic]
+ +
+
+
0
+
minutes
+
Total: 0
+
+
+
0
+
words
+
Total: 0
+
+
+
0
+
phrases
+
Total: 0
+
+
+
+ + +
+
[IMG: Progress chart]
+
+ + +
+
+ + \ No newline at end of file diff --git a/code/10489/10489_5.html b/code/10489/10489_5.html new file mode 100644 index 0000000000000000000000000000000000000000..c5b8b6acdf8186ad891ede8c39780a1cbcad9b37 --- /dev/null +++ b/code/10489/10489_5.html @@ -0,0 +1,373 @@ + + + + +Translate UI Mock + + + + +
+ + +
+
12:06
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+ + + + +
+
+ + + +
+
A
+
+ + +
[IMG: User Avatar]
+
Translate this sentence
+ + +
+
I
+
have
+
a car.
+
+ + +
+ + + + +
+ + +
+ Do you want to learn more? Tap to see the verb conjugations +
+ + +
+
मेरे पास
+
+ + +
+
पास
+
क्या
+
कार
+
एक
+
तुम्हारे
+
है
+
मेरे
+
+ + +
+
+
+
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10489/10489_6.html b/code/10489/10489_6.html new file mode 100644 index 0000000000000000000000000000000000000000..0b5f26b586be0ff13ce1c30b2a259401fa105f12 --- /dev/null +++ b/code/10489/10489_6.html @@ -0,0 +1,319 @@ + + + + + +Translate Screen + + + +
+ + +
+
+
12:06
+ + + + + + + +
+
+ + + + + + + +
+
+
+ + +
+ + + +
+ + +
+ + + + + + + + + +
+ + +
+
+ A + हिं +
+
+ + +
+
[IMG: User Avatar]
+
Translate this sentence
+
+ + +
+
+ + + + \ No newline at end of file diff --git a/code/10489/10489_7.html b/code/10489/10489_7.html new file mode 100644 index 0000000000000000000000000000000000000000..4b8964cec3f8299c41e7506461007c5953d68ddd --- /dev/null +++ b/code/10489/10489_7.html @@ -0,0 +1,354 @@ + + + + +Translate Screen UI + + + + +
+ +
+
12:07
+
+ + + +
+
+ + + +
+
+
+ + +
+ +
+ + +
+
+
+
+
+ + +
+
हि
+
A
+
+ + +
+
[IMG: Avatar]
+
Translate this sentence
+
+ + +
+
+ +
+
+ I have a car. +
+
+ + +
+ मेरे पास एक कार है। +
+ + +
+
पास
+
क्या
+
+
एक
+
तुम्हारे
+
है
+
मेरे
+
+ + +
+
+
+
+
+ +
Check
+ + +
+
+ + \ No newline at end of file diff --git a/code/10489/10489_9.html b/code/10489/10489_9.html new file mode 100644 index 0000000000000000000000000000000000000000..27531955fe7afd0ce699e49b6c0393b607a1ec1b --- /dev/null +++ b/code/10489/10489_9.html @@ -0,0 +1,368 @@ + + + + + +UI Render + + + +
+ +
+
12:08
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+ + + +
+ +
+ + + + + + + + + +
+ +
+
है
+
A
+
+
+ + +
+
[IMG: Avatar]
+
Swipe up/down
+
+ + +
+ + + +
+ + +
+
जीन्स
+
[IMG: Jeans]
+
+ + +
jacket
+
+ + + + +
+ + +
+
[IMG: Black Jacket]
+
जैकेट
+
+ + +
+ + + +
+ + +
+
+
+
+
+
+
+ + \ No newline at end of file diff --git a/code/105/105_4.html b/code/105/105_4.html new file mode 100644 index 0000000000000000000000000000000000000000..9dc1c07f1106092f85a0acd0777f4b1e1d23cd96 --- /dev/null +++ b/code/105/105_4.html @@ -0,0 +1,271 @@ + + + +Mobile UI Render + + + +
+ + +
+
3:29
+
+ + + +
+
+
+
+ + +
+
+
+ + + + +
+
Depart from
+
+
City, station, airport, port...
+
+ + +
+
+
+ + + +
+
Rome
+
+
+ + +
+
+
+ + + +
+
Rome (Italy)
+
+ +
+
+ + + +
+
Rome Ciampino (Airport) (Italy)
+
+ +
+
+ + + +
+
Rome Fiumicino (Airport) (Italy)
+
+ +
+
+ + + +
+
Rome (United States)
+
+ +
+
+ + + +
+
Romelandia (Brazil)
+
+ +
+
+ + + +
+
El Romeral (Spain)
+
+ +
+
+ + + +
+
Matias Romero Avendano
+
+
+ + +
+ + + +
+ + +
+
+
+ +
+
+
+ +
+
+ + +
+
q
w
e
r
t
y
u
i
o
p
+
+ +
+
a
s
d
f
g
h
j
k
l
+
+ +
+
z
x
c
v
b
n
m
+
+
+ +
+
?123
+
,
+
Space
+
.
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/105/105_7.html b/code/105/105_7.html new file mode 100644 index 0000000000000000000000000000000000000000..8ba2597917d4ed0ff4005f8352096a36dff35ce1 --- /dev/null +++ b/code/105/105_7.html @@ -0,0 +1,296 @@ + + + +Travel Search UI + + + +
+ + +
+
3:30
+
+
+
+
+
+
+
+
+ + +
+
+ + + +
+
Travel to
+
City, station, airport, port...
+
+ + +
+
+
+
Florence
+
+ +
+
+ + + +
Florence (Italy)
+
+ +
+ + + +
Florence (Airport) (Italy)
+
+ +
+ + + +
Florence (United States)
+
+ +
+ + + +
Florence (United States)
+
+ +
+ + + +
Florenceville-Bristol (Canada)
+
+
+
+ + +
+ + + +
+ + +
+
+
+ + + + + + + + +
+
Florence
+
+
🎙️
+
+
+
+ +
+
q
w
e
r
t
y
u
i
o
p
+
+
+
a
s
d
f
g
h
j
k
l
+
+
+
z
x
c
v
b
n
m
+
+
+
?123
+
,
+
🙂
+
+
.
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10502/10502_4.html b/code/10502/10502_4.html new file mode 100644 index 0000000000000000000000000000000000000000..4aeb2956332024d525cfc09f65e6fb3aa4df7805 --- /dev/null +++ b/code/10502/10502_4.html @@ -0,0 +1,442 @@ + + + + + +Search Results - Mockup + + + +
+ + +
+
3:34
+
+ + + + + + +
+
+ + +
+
+ + +
+
taj mahal
+
+ + + + +
+
+ + +
+
+ +
+
+ +
+
164 km
+
Taj Mahal
+
Dharmapuri, Forest Colony, Tajganj, Agra…
+
+ +
+
+ +
+
+ +
+
20 km
+
Taj Mahal Hotel, New Delhi
+
Maan Singh Road, South Block, Man Sing…
+
+ +
+
+ +
+
+ +
+
20 km
+
Taj Mahal Hotel
+
Taj Mansingh Hotel Road, South Block,…
+
+ +
+
+ +
+
+ +
+
25 km
+
Taj Mahal India Tours
+
Channa Market, Raigar Pura, Dev Nagar,…
+
+ +
+
+ +
+
+ +
+
165 km
+
Taj Mahal Agra Tour Guide (Govt. a…
+
Dharmapuri, Nai basti, Tajganj, Agra, Utt…
+
+ +
+
+ +
+
+ +
+
22 km
+
TAJ MAHAL
+
Sansad Marg, Police Colony, Connaught…
+
+ +
+
+ +
+
+ +
+
20 km
+
Taj mahal - WOW
+
Nizamuddin, Block A, Nagli Rajapur, Rail…
+
+ +
+
+ +
+
+ + +
+
+
mahal
+
Mahal
+
mahalaxmi
+
😊
+
+
+
+
q
+
w
+
e
+
r
+
t
+
y
+
u
+
i
+
o
+
p
+
+
+
a
+
s
+
d
+
f
+
g
+
h
+
j
+
k
+
l
+
+
+
+
+
z
+
x
+
c
+
v
+
b
+
n
+
m
+
.
+
+
+
+
?123
+
,
+
🙂
+
+
.
+
🔍
+
+
+
+ +
+
+ + \ No newline at end of file diff --git a/code/10502/10502_9.html b/code/10502/10502_9.html new file mode 100644 index 0000000000000000000000000000000000000000..2e57455d0dbfd746cf9437b3fdf4b6ebd2aa86f6 --- /dev/null +++ b/code/10502/10502_9.html @@ -0,0 +1,395 @@ + + + + + +Navigation UI Mock + + + +
+ + +
[IMG: Map - Roads and Buildings]
+ + +
+
3:36
+
+ + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + +
+
Head east
+
+
+ Then + +
+ + + +
+ + + + +
+
+ + + + +
+
+ + + + +
+ + +
+
--
+ km/h +
+ + +
+
+ + +
+
+ + + +
+
+
3 hr 43 min
+
216 km · 7:19 PM
+
+
+ + + +
+
+ + +
+
+ + + + +
+
+ + + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10503/10503_4.html b/code/10503/10503_4.html new file mode 100644 index 0000000000000000000000000000000000000000..a9c7cf32915fa402a7444e000d3e24ce656f69ee --- /dev/null +++ b/code/10503/10503_4.html @@ -0,0 +1,274 @@ + + + + +Travel Search UI + + + + +
+ + +
+
+
5:56
+
+ +
+
28°
+
+ +
+
+
+
+ +
+
+ +
+
+
+ + +
+
+
[IMG: Travel illustration with train, bus and plane]
+
+
+ + +
+
+
Where to, Jane ?
+ + +
+
+
+ +
+
New York, NY USA
+
+
+ + + +
+
+ + +
+
+
+ +
+
City, station, airport or port
+
+
+ + +
+
+
+
+ +
+
Wed, Sep 13
+
+
+
+
+
+ +
+
+ Add return
+
+
+
+ + +
+
+
+ +
+
1 Adult, No discount card
+
+
+ + + + + +
+

How it works

+
+
+ +
+
+ +
+
+
Search
+
Find trains, buses, flights and ferries across Europe, Canada and the US.
+
+
+ +
+
+ + + + +
+
+
Compare
+
Choose the fastest and cheapest routes from our 1000+ official partners.
+
+
+ +
+
+
+
+ + +
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10503/10503_5.html b/code/10503/10503_5.html new file mode 100644 index 0000000000000000000000000000000000000000..7ebc0df2b3244b8ef3f5962e4a7a2015c82fe0eb --- /dev/null +++ b/code/10503/10503_5.html @@ -0,0 +1,203 @@ + + + + + +Departure Search UI + + + +
+ + +
+
5:58
+
+
+ + + + + + +
+
+ + + + + +
+
+
+ + +
+
+ + + +
+
Departure
+
+ + + + + +
+ + + + Use location +
+
+ + +
+
+
⌨️
+
🙂
GIF
+
+
⚙️
+
🎨
+
🎤
+
+ +
+
+
q
w
e
r
t
+
y
u
i
o
p
+
+
+
a
s
d
f
g
+
h
j
k
l
+
+
+
+
z
x
c
v
b
n
m
+
+ + + + +
+
+
+ +
+
?123
+
,
+
😊
+
space
+
.
+
+ + + +
+
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10503/10503_7.html b/code/10503/10503_7.html new file mode 100644 index 0000000000000000000000000000000000000000..f193c499fa6074bffd565a26e9001735a59cf6ba --- /dev/null +++ b/code/10503/10503_7.html @@ -0,0 +1,335 @@ + + + + + +Travel Search UI + + + +
+ + +
+
+
5:59
+
28°
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+ + +
+
[IMG: Travel illustration with plane, bus and train]
+
Where to, Jane ?
+
+ + +
+ + +
+
+
+ +
+
New York, NY USA
+
+
+ + +
+
+ + +
+
+
+ + +
+
Delaware, OH USA
+
+
+ + +
+
+
+
+ + +
+
Wed, Sep 13
+
+
+
+
+
+ + +
+
+ Add return
+
+
+
+ + +
+
+
+ + +
+
1 Adult, No discount card
+
+
+ + +
Search Omio
+ + +
+

How it works

+
+
+
+
+ + +
+
+

Search

+

Find trains, buses, flights and ferries across Europe, Canada and the US.

+
+
+
+
+ + +
+
+

Compare

+

Choose the fastest and cheapest routes from our 1000+ official partners.

+
+
+
+
+ +
+ + +
+ + + +
+ + +
+
+
+ +
+ + \ No newline at end of file diff --git a/code/10503/10503_8.html b/code/10503/10503_8.html new file mode 100644 index 0000000000000000000000000000000000000000..5c379f4e39558ab39b5b451c2ea179d28fb647bc --- /dev/null +++ b/code/10503/10503_8.html @@ -0,0 +1,317 @@ + + + + + +Choose date UI + + + +
+ +
+
5:59
+
+
+
28°
+
+
+
+
+
+ + +
+
+
+ + + +
+
Choose date
+
+ +
+
Wed, Sep 13
+
+ Add Return
+
+
+ + +
+
S
M
T
W
T
F
S
+
+ + +
September 2023
+
+
+ +
.
+
.
+
.
+
.
+
.
+
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
+
+
+ + +
October 2023
+
+
+ +
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
+
.
+
.
+
.
+
.
+
+
+ + +
+ +
+ + + +
+ + \ No newline at end of file diff --git a/code/10503/10503_9.html b/code/10503/10503_9.html new file mode 100644 index 0000000000000000000000000000000000000000..7ff5d8deeb9a95b3e536d1023d8ef600d119c924 --- /dev/null +++ b/code/10503/10503_9.html @@ -0,0 +1,341 @@ + + + + + +Date Picker UI + + + +
+ + +
+
5:59
+
+ 28° +
+
+
+
+ + +
+
+ + + +
+

Choose date

+
+ + +
+
Fri, Sep 15
+
+ Add Return
+
+ + +
+
S
M
T
W
T
F
S
+
+ + +
September 2023
+
+
+ +
+
+
+
+
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
+
+
+
+ + +
October 2023
+
+
+ +
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
+
+
+
+
+
+
+ + +
+
Confirm
+
+ + + + +
+ + \ No newline at end of file diff --git a/code/10505/10505_0.html b/code/10505/10505_0.html new file mode 100644 index 0000000000000000000000000000000000000000..842798844bc9b9dda093546689974ac3c8e11c60 --- /dev/null +++ b/code/10505/10505_0.html @@ -0,0 +1,259 @@ + + + + + +Music Player - Morning Grace + + + +
+ + +
+
+ + + +
+
+ Dark mode +
+ +
+
+
+ + + + + +
Morning Grace
+ + +
+
+
+
+ + +
+
+
+
+
+ 01:33 + 06:08 +
+
+ + +
+
+ + + + + + Add to Playlist +
+ + + +
+ +
+
+ + \ No newline at end of file diff --git a/code/10505/10505_1.html b/code/10505/10505_1.html new file mode 100644 index 0000000000000000000000000000000000000000..0e7d19767612eb431e72c4c305526c806a23567c --- /dev/null +++ b/code/10505/10505_1.html @@ -0,0 +1,217 @@ + + + + + +Morning Grace Modal + + + +
+ + +
+
+
10:25
+
+
🏫
+
oyo
+
fc
+
+
+
+
+ + + +
+
+ + + + + +
+
+
+ + +
+ + + + + +
+ + +
+ + + +
+ + +
+
Dark mode
+
+
+ + +
Morning Grace
+ + +
+
[IMG: Orange check illustration]
+
Did you know?
+
+ Many specialists agree that introducing brief meditation sessions while dealing with ADHD and impulse-control problems in children has resulted in a better prognosis +
+
You have earned 4 Reflect points!
+ +
Done
+
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10505/10505_2.html b/code/10505/10505_2.html new file mode 100644 index 0000000000000000000000000000000000000000..d95900ebb4f5c22b230c04be55ce6bbbd7d01492 --- /dev/null +++ b/code/10505/10505_2.html @@ -0,0 +1,241 @@ + + + + + +Pick A Goal UI + + + +
+ + +
+
+
10:26
+
+
+ + + +
+
+ +
+
+
+ + + + + + +
+
+ +
+ +
[IMG: Person hiking illustration]
+ + +
+ + + + + +
+
Raks
+ +
+ + + + + + +
+
Wisdom
+ +
+ + + + + + +
+
Breathwork
+ +
+ + + + +
+
Sleep
+ +
+ + + + + +
+
Meditate
+ +
+ + + + +
+ + +
Pick A Goal
+
+ You are on the path to betterment.
+ Choose a goal to get started. +
+ + +
Choose A Goal To Get Started
+
+ + +
+
+ + + + + Today +
+
+ + + + + Goals +
+
+ + + + + Rak +
+
+ + + + + Me +
+
+
+ + \ No newline at end of file diff --git a/code/10505/10505_3.html b/code/10505/10505_3.html new file mode 100644 index 0000000000000000000000000000000000000000..468cbeb1d9475103c763f31054345ba5e4e3f7e7 --- /dev/null +++ b/code/10505/10505_3.html @@ -0,0 +1,299 @@ + + + + + +Profile Screen Mock + + + +
+ + +
+
10:26
+
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + +
+ + +
+
[IMG: Avatar Lotus] +
+
+
Guest
+
+ + +
+
+
G
+
[IMG: Milestone]
+
+
+
+
+
+
Start
+
Aspirant
+
+ +
RARE POINTS
+
+
+
22
+
Reflect
+
+
+
+
35
+
Act
+
+
+
+
2
+
Reinforce
+
+
+
+
0
+
Evaluate
+
+
+
+
+ + +
+
[IMG: Mountain]
+
1 Goal Completed
+
+ + +
+
[IMG: Plant]
+
0 Days Streak
+
+
F
+
S
+
S
+
M
+
T
+
W
+
T
+
+
+ + +
Badges
+
[IMG: Badges Area]
+ + +
+ + + + +
+ + +
+ +
+ + \ No newline at end of file diff --git a/code/10505/10505_4.html b/code/10505/10505_4.html new file mode 100644 index 0000000000000000000000000000000000000000..49c26df0915c07a51e11bb0ed8f48efa42447f79 --- /dev/null +++ b/code/10505/10505_4.html @@ -0,0 +1,354 @@ + + + + +Generated UI + + + +
+ +
+
+
10:27
+
+
oyo
+
fc
+
+
+
+
wifi
+
🔋
+
+
+ + +
+
[IMG: Goal Icon]
+
+
1 Goal Completed
+
+
+ + +
+
[IMG: Streak Plant]
+
+
0 Days Streak
+
+
F
+
S
+
S
+
S
+
M
+
T
+
W
+
T
+
+
+
+ + +
Badges
+
[IMG: Ribbon Badge]
+ + +