281 lines
8.4 KiB
HTML
281 lines
8.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Tools | Roman RyzenAdvanced</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=Outfit:wght@300;400;500;600&family=Product+Sans:wght@400;700&display=swap"
|
|
rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--ios-bg: #000000;
|
|
--glass-bg: rgba(255, 255, 255, 0.1);
|
|
--glass-border: rgba(255, 255, 255, 0.2);
|
|
--text-color: #ffffff;
|
|
--accent-blue: #007AFF;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
background: #000;
|
|
color: var(--text-color);
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
background:
|
|
radial-gradient(circle at 20% 20%, #1a1a2e 0%, transparent 40%),
|
|
radial-gradient(circle at 80% 80%, #16213e 0%, transparent 40%),
|
|
radial-gradient(circle at 50% 50%, #0f3460 0%, transparent 60%);
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
/* Status Bar Style Header */
|
|
header {
|
|
width: 100%;
|
|
padding: 1rem 0;
|
|
margin-bottom: 3rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
.back-link {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
text-decoration: none;
|
|
font-size: 0.9rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.back-link:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
.page-title {
|
|
font-family: 'Product Sans', sans-serif;
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
letter-spacing: -0.02em;
|
|
background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
/* App Grid */
|
|
.app-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(100px, 120px));
|
|
gap: 2rem 3rem;
|
|
justify-content: center;
|
|
padding: 1rem;
|
|
width: 100%;
|
|
max-width: 600px;
|
|
animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
|
|
animation-delay: 0.2s;
|
|
}
|
|
|
|
.app-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
gap: 0.75rem;
|
|
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
.app-item:active {
|
|
transform: scale(0.9);
|
|
}
|
|
|
|
.icon-container {
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 18px;
|
|
/* Squircle approximation */
|
|
position: relative;
|
|
background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.icon-container::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.app-item:hover .icon-container {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 15px 30px rgba(66, 133, 244, 0.4);
|
|
}
|
|
|
|
.app-icon-text {
|
|
font-family: 'Product Sans', sans-serif;
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.app-name {
|
|
font-size: 0.85rem;
|
|
font-weight: 500;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* Mock placeholders for "iPhone" feel */
|
|
.app-item.placeholder .icon-container {
|
|
background: var(--glass-bg);
|
|
border: 1px solid var(--glass-border);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.app-item.placeholder .app-icon-text {
|
|
color: rgba(255, 255, 255, 0.2);
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.app-item.placeholder .app-name {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes fadeInDown {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-20px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes scaleIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: scale(0.9);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 480px) {
|
|
.app-grid {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.icon-container {
|
|
width: 70px;
|
|
height: 70px;
|
|
}
|
|
|
|
.page-title {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<a href="/" class="back-link">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
|
stroke-linecap="round" stroke-linejoin="round">
|
|
<path d="M19 12H5M12 19l-7-7 7-7" />
|
|
</svg>
|
|
Home
|
|
</a>
|
|
<h1 class="page-title">Tools</h1>
|
|
<div style="width: 40px"></div> <!-- Spacer -->
|
|
</header>
|
|
|
|
<div class="app-grid">
|
|
<!-- Active Tool: PromptArch -->
|
|
<a href="/tools/promptarch/" class="app-item">
|
|
<div class="icon-container">
|
|
<span class="app-icon-text">PA</span>
|
|
</div>
|
|
<span class="app-name">PromptArch</span>
|
|
</a>
|
|
|
|
<!-- Active Tool: NanoJasonPro -->
|
|
<a href="/tools/nanojason/" class="app-item">
|
|
<div class="icon-container" style="background: linear-gradient(135deg, #9333ea 0%, #db2777 100%);">
|
|
<span class="app-icon-text">NJ</span>
|
|
</div>
|
|
<span class="app-name">NanoJasonPro</span>
|
|
</a>
|
|
|
|
<!-- Active Tool: Trae Game -->
|
|
<a href="/tools/game/" class="app-item">
|
|
<div class="icon-container" style="background: linear-gradient(135deg, #ef4444 0%, #10b981 100%);">
|
|
<span class="app-icon-text">TG</span>
|
|
</div>
|
|
<span class="app-name">Trae Game</span>
|
|
</a>
|
|
|
|
<!-- Placeholders -->
|
|
<div class="app-item placeholder">
|
|
<div class="icon-container">
|
|
<span class="app-icon-text">+</span>
|
|
</div>
|
|
<span class="app-name">Coming Soon</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
// Subtle interaction: Icons "jiggle" slightly on load like iOS setup
|
|
window.addEventListener('load', () => {
|
|
const items = document.querySelectorAll('.app-item:not(.placeholder)');
|
|
items.forEach((item, index) => {
|
|
item.style.animation = `scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards`;
|
|
item.style.animationDelay = `${index * 0.1 + 0.2}s`;
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |