socialfi/index.html
2025-12-18 00:05:55 +09:00

49 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>CAW | The Future Of Decentralized Social Network</title>
<meta name='theme-color' content='#f9c336'>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="icon" type="image/png" href="/src/assets/caw.png"/>
<!-- Apple -->
<link rel='apple-touch-icon' href='/assets/caw.png'>
<link rel='apple-touch-icon' sizes='76x76' href='/assets/caw.png'>
<link rel='apple-touch-icon' sizes='120x120' href='/assets/caw.png'>
<link rel='apple-touch-icon' sizes='152x152' href='/assets/caw.png'>
<!-- Microsoft -->
<meta name='msapplication-square70x70logo' content='/assets/caw.png'>
<meta name='msapplication-square150x150logo' content='/assets/caw.png'>
<meta name='msapplication-wide310x150logo' content='/assets/caw.png'>
<!-- Minimal -->
<link rel='icon' type='image/png' href='/assets/caw.png'>
<link rel='icon' sizes='192x192' href='/assets/caw.png'>
<link rel='apple-touch-icon' href='/assets/caw.png'>
<meta name='msapplication-square310x310logo' content='/src/assets/caw.png'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossOrigin="anonymous" referrerPolicy="no-referrer"/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
window.global = globalThis;
window.require = function () {};
</script>
</body>
</html>