home / index.html
joermd's picture
Update index.html
b1aace0 verified
raw
history blame
5.4 kB
<!DOCTYPE html>
<html dir="rtl" lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>تجارب المستخدمين - Speedy Sons</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Tajawal', sans-serif;
}
body {
background: #1a1c2e;
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
.logo-container {
margin: 2rem 0;
position: relative;
width: 100px;
height: 100px;
}
.logo {
width: 100%;
height: 100%;
position: relative;
}
.logo svg {
width: 100%;
height: 100%;
}
.wave {
stroke: #4facfe;
stroke-width: 3;
fill: none;
animation: wave 2s infinite;
}
.dot {
fill: #4facfe;
animation: pulse 2s infinite;
}
@keyframes wave {
0% { transform: translateX(-5px); }
50% { transform: translateX(5px); }
100% { transform: translateX(-5px); }
}
@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.2); opacity: 0.8; }
}
.feedback-container {
max-width: 1200px;
width: 90%;
margin: 2rem auto;
}
.feedback-card {
background: linear-gradient(45deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
border-radius: 15px;
padding: 2rem;
margin-bottom: 2rem;
display: flex;
gap: 2rem;
transition: transform 0.3s;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.feedback-card:hover {
transform: translateY(-5px);
}
.user-section {
flex: 1;
padding: 1rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
}
.model-section {
flex: 2;
padding: 1rem;
background: rgba(0, 242, 254, 0.05);
border-radius: 10px;
}
h2 {
margin-bottom: 1rem;
color: #4facfe;
}
.floating {
animation: float 6s infinite ease-in-out;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.bubbles {
position: fixed;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}
.bubble {
position: absolute;
border-radius: 50%;
background: rgba(79, 172, 254, 0.1);
animation: rise 15s infinite ease-in;
}
@keyframes rise {
0% { transform: translateY(100vh) scale(0); }
100% { transform: translateY(-100vh) scale(2); }
}
</style>
</head>
<body>
<!-- Animated Background -->
<div class="bubbles">
<div class="bubble" style="left: 10%; width: 30px; height: 30px; animation-delay: 0s;"></div>
<div class="bubble" style="left: 35%; width: 50px; height: 50px; animation-delay: 2s;"></div>
<div class="bubble" style="left: 65%; width: 20px; height: 20px; animation-delay: 4s;"></div>
<div class="bubble" style="left: 85%; width: 40px; height: 40px; animation-delay: 6s;"></div>
</div>
<!-- Animated Logo -->
<div class="logo-container floating">
<svg viewBox="0 0 100 100">
<circle class="dot" cx="10" cy="50" r="5"/>
<path class="wave" d="M 20 50 Q 35 30, 50 50 T 80 50"/>
<circle class="dot" cx="90" cy="50" r="5"/>
</svg>
</div>
<div class="feedback-container">
<div class="feedback-card">
<div class="user-section">
<h2>سؤال المستخدم</h2>
<p>كيف يمكنني كتابة مقال عن التكنولوجيا الحديثة؟</p>
</div>
<div class="model-section">
<h2>رد النموذج</h2>
<p>سأساعدك في كتابة مقال متكامل عن التكنولوجيا الحديثة. يمكننا البدء بمقدمة عن أهمية التكنولوجيا في حياتنا اليومية...</p>
</div>
</div>
<div class="feedback-card">
<div class="user-section">
<h2>سؤال المستخدم</h2>
<p>هل يمكنك مساعدتي في كتابة رسالة رسمية؟</p>
</div>
<div class="model-section">
<h2>رد النموذج</h2>
<p>بالتأكيد! سأساعدك في صياغة رسالة رسمية احترافية تتناسب مع احتياجاتك...</p>
</div>
</div>
</div>
</body>
</html>