-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
99 lines (82 loc) · 4.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!--
~ Copyright (c) 2023. Selldone® Business OS™
~
~ Author: M.Pajuhaan
~ Web: https://selldone.com
~ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
~
~ All rights reserved. In the weave of time, where traditions and innovations intermingle, this content was crafted.
~ From the essence of thought, through the corridors of creativity, each word, and sentiment has been molded.
~ Not just to exist, but to inspire. Like an artist's stroke or a sculptor's chisel, every nuance is deliberate.
~ Our journey is not just about reaching a destination, but about creating a masterpiece.
~ Tread carefully, for you're treading on dreams.
-->
<!--
Hi,
Make yourself happy.
(\_/)
( •_•)
/ >☕
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width,initial-scale=1.0" name="viewport">
<link rel="icon" href="/favicon.ico">
<title>Selldone</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<!-- 🦋 Dev Kit -->
<!-- It's the local dev server. -->
<!-- 🌌 Business OS -->
<meta content="Shop" name="Classification">
<meta content="Selldone" name="copyright">
<!-- 🏬 Shop Name -->
<meta content="%VITE_APP_SAMPLE_SHOP_NAME%" name="shop-name">
<!-- 🎗 Prefix address of app Ex./@pajuhaan -->
<meta content="" name="shop-prefix-address">
<!-- 📰 Shop custom page -->
<meta content="%VITE_APP_SAMPLE_SHOP_CUSTOM_HOME%" name="custom-home">
<!-- ―――――――――――――――― Start ❯ Business OS Configuration ―――――――――――――――― -->
<!-- 🪁 Service Origin -->
<meta content="https://selldone.com" name="service-url">
<!-- 🎯 APIs -->
<meta content="https://gapi.selldone.com" name="selldone-gapi">
<meta content="https://xapi.selldone.com" name="selldone-xapi">
<meta content="https://iframe.selldone.com" name="selldone-iframe">
<meta content="https://capi.selldone.com" name="selldone-capi">
<!-- 🌍 CDNs -->
<meta content="https://selldone.com/cdn-shop-images-1" name="selldone-cdn-images">
<meta content="https://selldone.com/cdn-shop-jsons-1" name="selldone-cdn-jsons">
<meta content="https://selldone.com/cdn-videos" name="selldone-cdn-videos">
<meta content="https://selldone.com/cdn-shop-temp-files" name="selldone-cdn-temp-files">
<meta content="https://selldone.com/cdn-ar" name="selldone-cdn-ar">
<meta content="https://selldone.com/cdn-id" name="selldone-cdn-id">
<meta content="true" name="storage-redirect">
<meta content="https://cdn.selldone.com" name="storage-redirect-host">
<meta content="true" name="storage-redirect-thumbnails">
<!-- 🧩 Defaults -->
<meta content="" name="local-service-country">
<!-- Default Currency : 🇬 🇧 🇵 -->
<meta content="%VITE_APP_SAMPLE_DEFAULT_CURRENCY%" name="default-currency">
<!-- Default Country : 🇬🇧 -->
<meta content="%VITE_APP_SAMPLE_DEFAULT_COUNTRY%" name="default-country">
<!-- Default Language : 🇪 🇳 -->
<meta content="%VITE_APP_SAMPLE_DEFAULT_LANGUAGE%" name="initial-language">
<!-- 🎨 Theme -->
<meta content="%VITE_APP_SAMPLE_THEME_COLOR_LIGHT%" name="color--theme-light">
<meta content="%VITE_APP_SAMPLE_THEME_COLOR_DARK%" name="color--theme-dark">
<meta content="%VITE_APP_SAMPLE_THEME_COLOR_DEEP_DARK%" name="color--theme-deep-dark">
<meta content="%VITE_APP_SAMPLE_THEME_COLOR_INFO%" name="color--theme-info">
</head>
<body>
<noscript>
<strong>We're sorry but Selldone doesn't work properly without JavaScript enabled. Please enable it to
continue.</strong>
</noscript>
<div id="app"></div>
<script type="module" src="storefront.ts"></script>
</body>
</html>