|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
|
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Elvoro Tools - Social Media Management</title> |
|
|
<link rel="preconnect" href="https://fonts.googleapis.com"> |
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> |
|
|
<link rel="icon" href="/logo.webp" type="image/webp"> |
|
|
<style> |
|
|
:root { |
|
|
--bg: #f8fafc; |
|
|
--surface: #ffffff; |
|
|
--primary: #4f46e5; |
|
|
--primary-hover: #4338ca; |
|
|
--text: #0f172a; |
|
|
--text-secondary: #475569; |
|
|
--border: #e2e8f0; |
|
|
} |
|
|
|
|
|
body { |
|
|
font-family: 'Inter', sans-serif; |
|
|
background-color: var(--bg); |
|
|
color: var(--text); |
|
|
margin: 0; |
|
|
line-height: 1.6; |
|
|
-webkit-font-smoothing: antialiased; |
|
|
} |
|
|
|
|
|
.container { |
|
|
max-width: 1000px; |
|
|
margin: 0 auto; |
|
|
padding: 0 20px; |
|
|
} |
|
|
|
|
|
|
|
|
.hero { |
|
|
background-color: var(--surface); |
|
|
border-bottom: 1px solid var(--border); |
|
|
padding: 80px 0 60px; |
|
|
text-align: center; |
|
|
} |
|
|
|
|
|
.hero h1 { |
|
|
font-size: 48px; |
|
|
font-weight: 800; |
|
|
letter-spacing: -0.03em; |
|
|
margin-bottom: 16px; |
|
|
background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%); |
|
|
-webkit-background-clip: text; |
|
|
background-clip: text; |
|
|
-webkit-text-fill-color: transparent; |
|
|
} |
|
|
|
|
|
.hero p { |
|
|
font-size: 20px; |
|
|
color: var(--text-secondary); |
|
|
max-width: 600px; |
|
|
margin: 0 auto 40px; |
|
|
} |
|
|
|
|
|
.btn-group { |
|
|
display: flex; |
|
|
gap: 16px; |
|
|
justify-content: center; |
|
|
flex-wrap: wrap; |
|
|
} |
|
|
|
|
|
.btn { |
|
|
display: inline-flex; |
|
|
align-items: center; |
|
|
gap: 10px; |
|
|
padding: 16px 32px; |
|
|
background-color: var(--primary); |
|
|
color: white; |
|
|
text-decoration: none; |
|
|
border-radius: 12px; |
|
|
font-weight: 600; |
|
|
transition: all 0.2s ease; |
|
|
box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2); |
|
|
} |
|
|
|
|
|
.btn:hover { |
|
|
background-color: var(--primary-hover); |
|
|
transform: translateY(-2px); |
|
|
box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3); |
|
|
} |
|
|
|
|
|
.btn.secondary { |
|
|
background-color: white; |
|
|
color: var(--text); |
|
|
border: 1px solid var(--border); |
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); |
|
|
} |
|
|
|
|
|
.btn.secondary:hover { |
|
|
background-color: #f1f5f9; |
|
|
border-color: #cbd5e1; |
|
|
} |
|
|
|
|
|
|
|
|
.section { |
|
|
padding: 80px 0; |
|
|
} |
|
|
|
|
|
.section h2 { |
|
|
font-size: 32px; |
|
|
font-weight: 700; |
|
|
margin-bottom: 40px; |
|
|
text-align: center; |
|
|
} |
|
|
|
|
|
.features-grid { |
|
|
display: grid; |
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); |
|
|
gap: 30px; |
|
|
} |
|
|
|
|
|
.feature-card { |
|
|
background-color: var(--surface); |
|
|
padding: 30px; |
|
|
border-radius: 20px; |
|
|
border: 1px solid var(--border); |
|
|
transition: transform 0.2s; |
|
|
} |
|
|
|
|
|
.feature-card:hover { |
|
|
transform: translateY(-5px); |
|
|
border-color: var(--primary); |
|
|
} |
|
|
|
|
|
.feature-icon { |
|
|
font-size: 32px; |
|
|
margin-bottom: 20px; |
|
|
display: block; |
|
|
} |
|
|
|
|
|
.feature-card h3 { |
|
|
font-size: 20px; |
|
|
margin-bottom: 12px; |
|
|
font-weight: 600; |
|
|
} |
|
|
|
|
|
.feature-card p { |
|
|
color: var(--text-secondary); |
|
|
font-size: 15px; |
|
|
} |
|
|
|
|
|
|
|
|
.transparency { |
|
|
background-color: #e0e7ff; |
|
|
border-radius: 24px; |
|
|
padding: 60px; |
|
|
margin: 60px 0; |
|
|
text-align: center; |
|
|
} |
|
|
|
|
|
.transparency h2 { |
|
|
color: var(--primary); |
|
|
margin-top: 0; |
|
|
} |
|
|
|
|
|
.transparency p { |
|
|
max-width: 700px; |
|
|
margin: 0 auto 20px; |
|
|
color: #312e81; |
|
|
} |
|
|
|
|
|
|
|
|
.footer { |
|
|
background-color: var(--surface); |
|
|
border-top: 1px solid var(--border); |
|
|
padding: 40px 0; |
|
|
text-align: center; |
|
|
color: var(--text-secondary); |
|
|
font-size: 14px; |
|
|
} |
|
|
|
|
|
.footer a { |
|
|
color: var(--text-secondary); |
|
|
text-decoration: none; |
|
|
margin: 0 12px; |
|
|
transition: color 0.2s; |
|
|
} |
|
|
|
|
|
.footer a:hover { |
|
|
color: var(--primary); |
|
|
} |
|
|
</style> |
|
|
<script> |
|
|
|
|
|
|
|
|
const urlParams = new URLSearchParams(window.location.search); |
|
|
if (urlParams.has('code') && urlParams.has('state')) { |
|
|
|
|
|
|
|
|
window.location.href = '/social/oauth2callback' + window.location.search; |
|
|
} |
|
|
</script> |
|
|
</head> |
|
|
|
|
|
<body> |
|
|
|
|
|
|
|
|
<div class="hero"> |
|
|
<div class="container"> |
|
|
<img src="/logo.webp" alt="Elvoro Tools Logo" |
|
|
style="width: 120px; height: 120px; margin-bottom: 24px; border-radius: 20px; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);"> |
|
|
<h1>Elvoro Tools</h1> |
|
|
<p>Streamline your content workflow with our integrated social media publishing and management automation |
|
|
platform.</p> |
|
|
|
|
|
<div class="btn-group"> |
|
|
<a class="btn" href="/social/"> |
|
|
<span>โจ</span> Launch Social Publisher |
|
|
</a> |
|
|
<a class="btn secondary" href="/github_workflow/"> |
|
|
<span>๐</span> Workflow Runner |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="section container"> |
|
|
<h2>Why Elvoro Tools?</h2> |
|
|
<div class="features-grid"> |
|
|
<div class="feature-card"> |
|
|
<span class="feature-icon">๐บ</span> |
|
|
<h3>Seamless YouTube Integration</h3> |
|
|
<p>Directly upload your video content to your YouTube channel. Set titles, descriptions, tags, and |
|
|
privacy settings all from one dashboard.</p> |
|
|
</div> |
|
|
<div class="feature-card"> |
|
|
<span class="feature-icon">โก</span> |
|
|
<h3>Multi-Platform Publishing</h3> |
|
|
<p>Publish simultaneously to YouTube Shorts, TikTok, and Instagram Reels. Save time by managing all your |
|
|
short-form content in one place.</p> |
|
|
</div> |
|
|
<div class="feature-card"> |
|
|
<span class="feature-icon">๐</span> |
|
|
<h3>Secure & Private</h3> |
|
|
<p>Your data is yours. We use official APIs with secure OAuth authentication. Your videos are processed |
|
|
ephemerally and never permanently stored on our servers.</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="container"> |
|
|
<div class="transparency"> |
|
|
<h2>Data Transparency</h2> |
|
|
<p>Elvoro Tools requires access to your YouTube account solely to perform the actions you request: uploading |
|
|
videos and displaying your channel statistics.</p> |
|
|
<p>We do not share your personal data with third parties for marketing purposes. Please review our Privacy |
|
|
Policy for full details on how we handle your data.</p> |
|
|
<div style="margin-top: 30px;"> |
|
|
<a href="/privacy-policy" style="color: var(--primary); font-weight: 600; text-decoration: none;">Read |
|
|
Privacy Policy →</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="footer"> |
|
|
<div class="container"> |
|
|
<p>© 2026 Elvoro Ltd. All rights reserved.</p> |
|
|
<div style="margin-top: 16px;"> |
|
|
<a href="/privacy-policy">Privacy Policy</a> |
|
|
<a href="/terms-of-service">Terms of Service</a> |
|
|
<a href="/data-deletion">Data Deletion</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
</body> |
|
|
|
|
|
</html> |