add apple app store for ios
This commit is contained in:
267
public/app.html
Normal file
267
public/app.html
Normal file
@@ -0,0 +1,267 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ja">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Aicard - App Store</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: #f5f5f7;
|
||||
color: #1d1d1f;
|
||||
line-height: 1.8;
|
||||
}
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
.app-header {
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
padding-bottom: 30px;
|
||||
border-bottom: 1px solid #d2d2d7;
|
||||
}
|
||||
.app-icon {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
border-radius: 24px;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
margin: 0 auto 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 48px;
|
||||
color: #fff;
|
||||
box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
|
||||
}
|
||||
.app-title {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
color: #1d1d1f;
|
||||
}
|
||||
.app-subtitle {
|
||||
font-size: 18px;
|
||||
color: #86868b;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.download-btn {
|
||||
display: inline-block;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: #fff;
|
||||
padding: 14px 32px;
|
||||
border-radius: 12px;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
transition: transform 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.download-btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
|
||||
}
|
||||
.section {
|
||||
background: #fff;
|
||||
border-radius: 12px;
|
||||
padding: 30px;
|
||||
margin-bottom: 20px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
.section-title {
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 16px;
|
||||
color: #1d1d1f;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 2px solid #667eea;
|
||||
display: inline-block;
|
||||
}
|
||||
.section p {
|
||||
color: #424245;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.feature-list {
|
||||
list-style: none;
|
||||
}
|
||||
.feature-list li {
|
||||
padding: 12px 0;
|
||||
border-bottom: 1px solid #d2d2d7;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
.feature-list li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.feature-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 18px;
|
||||
}
|
||||
.feature-text h4 {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 4px;
|
||||
color: #1d1d1f;
|
||||
}
|
||||
.feature-text p {
|
||||
font-size: 14px;
|
||||
color: #424245;
|
||||
margin: 0;
|
||||
}
|
||||
.screenshots {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
overflow-x: auto;
|
||||
padding: 10px 0;
|
||||
}
|
||||
.screenshot {
|
||||
min-width: 200px;
|
||||
height: 360px;
|
||||
background: #f0f0f5;
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #86868b;
|
||||
font-size: 14px;
|
||||
border: 1px solid #d2d2d7;
|
||||
}
|
||||
.info-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 16px;
|
||||
}
|
||||
.info-item {
|
||||
text-align: center;
|
||||
padding: 16px;
|
||||
background: #f0f0f5;
|
||||
border-radius: 12px;
|
||||
}
|
||||
.info-item .label {
|
||||
font-size: 12px;
|
||||
color: #86868b;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
.info-item .value {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
margin-top: 4px;
|
||||
color: #1d1d1f;
|
||||
}
|
||||
footer {
|
||||
text-align: center;
|
||||
padding: 30px 20px;
|
||||
color: #86868b;
|
||||
font-size: 14px;
|
||||
}
|
||||
footer a {
|
||||
color: #667eea;
|
||||
text-decoration: none;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
.info-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.app-title {
|
||||
font-size: 28px;
|
||||
}
|
||||
.section {
|
||||
padding: 20px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header class="app-header">
|
||||
<div class="app-icon">ai</div>
|
||||
<h1 class="app-title">Aicard</h1>
|
||||
<p class="app-subtitle">ai.syui.card</p>
|
||||
<a href="#" class="download-btn">App Store</a>
|
||||
</header>
|
||||
|
||||
<section class="section">
|
||||
<h2 class="section-title">App</h2>
|
||||
<p>
|
||||
Aicard (iOS) is a card collecting game. You can save your data to your Atproto account. Saved data is linked to Airse (Windows, Mac), an open-world action game.
|
||||
</p>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2 class="section-title">Function</h2>
|
||||
<ul class="feature-list">
|
||||
<li>
|
||||
<div class="feature-icon">✨</div>
|
||||
<div class="feature-text">
|
||||
<h4>Holographic Effect</h4>
|
||||
<p>Special cards change color depending on the angle of light.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="feature-icon">🃏</div>
|
||||
<div class="feature-text">
|
||||
<h4>Card Collection</h4>
|
||||
<p>The initial set includes 13 types of cards.</p>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="feature-icon">🌐</div>
|
||||
<div class="feature-text">
|
||||
<h4>Bluesky Integration</h4>
|
||||
<p>Proof of card ownership linked with a decentralized social network.</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<h2 class="section-title">App Information</h2>
|
||||
<div class="info-grid">
|
||||
<div class="info-item">
|
||||
<div class="label">Version</div>
|
||||
<div class="value">1.0.1</div>
|
||||
</div>
|
||||
<div class="info-item">
|
||||
<div class="label">Category</div>
|
||||
<div class="value">Entertainment</div>
|
||||
</div>
|
||||
<div class="info-item">
|
||||
<div class="label">Supported OS</div>
|
||||
<div class="value">iOS 26.0+</div>
|
||||
</div>
|
||||
<div class="info-item">
|
||||
<div class="label">Price</div>
|
||||
<div class="value">Free (Offers in-app purchases)</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<p style="margin-top: 8px;">
|
||||
<a href="/privacy.html">Privacy Policy</a>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<p>© syui</p>
|
||||
<p style="margin-top: 8px;">
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user