Spaces:
Running
Running
| <html lang="fa" dir="rtl"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>وبسایت شخصی | اهورا نیازی</title> | |
| <link href="https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;300;400;500;700;900&display=swap" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> | |
| <style> | |
| :root { | |
| --primary-color: #1a1a2e; | |
| --secondary-color: #16213e; | |
| --accent-color: #0f3460; | |
| --highlight-color: #e94560; | |
| --text-dark: #2d3436; | |
| --text-light: #636e72; | |
| --bg-light: #f8f9fa; | |
| --bg-white: #ffffff; | |
| --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05); | |
| --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.08); | |
| --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12); | |
| --radius-sm: 8px; | |
| --radius-md: 16px; | |
| --radius-lg: 24px; | |
| --transition: all 0.3s ease; | |
| } | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| body { | |
| font-family: 'Vazirmatn', sans-serif; | |
| background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%); | |
| color: var(--text-dark); | |
| line-height: 1.6; | |
| min-height: 100vh; | |
| } | |
| /* Header */ | |
| .header { | |
| background: var(--bg-white); | |
| padding: 1rem 2rem; | |
| box-shadow: var(--shadow-sm); | |
| position: sticky; | |
| top: 0; | |
| z-index: 100; | |
| backdrop-filter: blur(10px); | |
| background: rgba(255, 255, 255, 0.9); | |
| } | |
| .header-content { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| } | |
| .logo { | |
| font-size: 1.5rem; | |
| font-weight: 900; | |
| color: var(--primary-color); | |
| text-decoration: none; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| } | |
| .logo i { | |
| color: var(--highlight-color); | |
| } | |
| .built-with { | |
| font-size: 0.85rem; | |
| color: var(--text-light); | |
| text-decoration: none; | |
| padding: 0.5rem 1rem; | |
| border: 1px solid #ddd; | |
| border-radius: 20px; | |
| transition: var(--transition); | |
| } | |
| .built-with:hover { | |
| background: var(--primary-color); | |
| color: white; | |
| border-color: var(--primary-color); | |
| } | |
| /* Main Container */ | |
| .container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| padding: 2rem; | |
| } | |
| /* Section Styles */ | |
| section { | |
| margin-bottom: 3rem; | |
| } | |
| .section-title { | |
| font-size: 2rem; | |
| font-weight: 900; | |
| color: var(--primary-color); | |
| margin-bottom: 1.5rem; | |
| position: relative; | |
| display: inline-block; | |
| } | |
| .section-title::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: -8px; | |
| right: 0; | |
| width: 60px; | |
| height: 4px; | |
| background: var(--highlight-color); | |
| border-radius: 2px; | |
| } | |
| /* Video Cards Section */ | |
| .video-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | |
| gap: 1.5rem; | |
| } | |
| .video-card { | |
| background: var(--bg-white); | |
| border-radius: var(--radius-lg); | |
| overflow: hidden; | |
| box-shadow: var(--shadow-md); | |
| transition: var(--transition); | |
| position: relative; | |
| } | |
| .video-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: var(--shadow-lg); | |
| } | |
| .video-thumbnail { | |
| height: 180px; | |
| background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .video-thumbnail::before { | |
| content: ''; | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); | |
| } | |
| .play-icon { | |
| width: 60px; | |
| height: 60px; | |
| background: rgba(255, 255, 255, 0.2); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| backdrop-filter: blur(5px); | |
| z-index: 1; | |
| } | |
| .play-icon i { | |
| font-size: 1.5rem; | |
| color: white; | |
| margin-right: 4px; | |
| } | |
| .view-count-badge { | |
| position: absolute; | |
| top: 12px; | |
| right: 12px; | |
| background: rgba(0, 0, 0, 0.7); | |
| color: white; | |
| padding: 4px 12px; | |
| border-radius: 20px; | |
| font-size: 0.8rem; | |
| font-weight: 500; | |
| display: flex; | |
| align-items: center; | |
| gap: 5px; | |
| } | |
| .video-content { | |
| padding: 1.25rem; | |
| } | |
| .video-title { | |
| font-size: 1.1rem; | |
| font-weight: 700; | |
| color: var(--primary-color); | |
| margin-bottom: 0.5rem; | |
| line-height: 1.4; | |
| } | |
| .video-description { | |
| font-size: 0.9rem; | |
| color: var(--text-light); | |
| margin-bottom: 1rem; | |
| } | |
| .video-stats { | |
| display: flex; | |
| gap: 1.5rem; | |
| padding-top: 1rem; | |
| border-top: 1px solid #eee; | |
| } | |
| .stat-item { | |
| display: flex; | |
| align-items: center; | |
| gap: 6px; | |
| color: var(--text-light); | |
| font-size: 0.85rem; | |
| cursor: pointer; | |
| transition: var(--transition); | |
| } | |
| .stat-item:hover { | |
| color: var(--highlight-color); | |
| } | |
| .stat-item.like:hover { | |
| color: var(--highlight-color); | |
| } | |
| .stat-item.comment:hover { | |
| color: var(--accent-color); | |
| } | |
| /* User Info Section */ | |
| .user-section { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 2rem; | |
| } | |
| @media (max-width: 768px) { | |
| .user-section { | |
| grid-template-columns: 1fr; | |
| } | |
| } | |
| .user-card { | |
| background: var(--bg-white); | |
| border-radius: var(--radius-lg); | |
| padding: 2rem; | |
| box-shadow: var(--shadow-md); | |
| transition: var(--transition); | |
| } | |
| .user-card:hover { | |
| box-shadow: var(--shadow-lg); | |
| } | |
| .user-intro { | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| margin-bottom: 1rem; | |
| } | |
| .user-avatar { | |
| width: 60px; | |
| height: 60px; | |
| border-radius: 50%; | |
| background: linear-gradient(135deg, var(--highlight-color), var(--accent-color)); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| color: white; | |
| font-size: 1.5rem; | |
| font-weight: 700; | |
| } | |
| .user-name { | |
| font-size: 1.3rem; | |
| font-weight: 700; | |
| color: var(--primary-color); | |
| } | |
| .user-message { | |
| color: var(--text-light); | |
| line-height: 1.8; | |
| font-size: 0.95rem; | |
| position: relative; | |
| padding-right: 1.5rem; | |
| } | |
| .user-message::before { | |
| content: '"'; | |
| position: absolute; | |
| right: 0; | |
| top: -10px; | |
| font-size: 3rem; | |
| color: var(--highlight-color); | |
| opacity: 0.3; | |
| font-family: serif; | |
| } | |
| .comments-section { | |
| background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); | |
| border-radius: var(--radius-md); | |
| padding: 1.5rem; | |
| border-right: 4px solid var(--highlight-color); | |
| } | |
| .comments-title { | |
| font-size: 1.1rem; | |
| font-weight: 700; | |
| color: var(--primary-color); | |
| margin-bottom: 1rem; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| } | |
| .comments-title i { | |
| color: var(--highlight-color); | |
| } | |
| .comment-item { | |
| background: var(--bg-white); | |
| padding: 1rem; | |
| border-radius: var(--radius-sm); | |
| margin-bottom: 0.75rem; | |
| font-size: 0.9rem; | |
| color: var(--text-dark); | |
| box-shadow: var(--shadow-sm); | |
| position: relative; | |
| } | |
| .comment-item::before { | |
| content: ''; | |
| position: absolute; | |
| right: 0; | |
| top: 0; | |
| bottom: 0; | |
| width: 3px; | |
| background: var(--accent-color); | |
| border-radius: 3px 0 0 3px; | |
| } | |
| /* FAQ & Contact Section */ | |
| .faq-contact-grid { | |
| display: grid; | |
| grid-template-columns: 1.5fr 1fr; | |
| gap: 2rem; | |
| } | |
| @media (max-width: 900px) { | |
| .faq-contact-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| } | |
| .faq-card { | |
| background: var(--bg-white); | |
| border-radius: var(--radius-lg); | |
| padding: 2rem; | |
| box-shadow: var(--shadow-md); | |
| } | |
| .faq-list { | |
| list-style: none; | |
| } | |
| .faq-item { | |
| margin-bottom: 1rem; | |
| border: 1px solid #eee; | |
| border-radius: var(--radius-sm); | |
| overflow: hidden; | |
| transition: var(--transition); | |
| } | |
| .faq-item:hover { | |
| border-color: var(--highlight-color); | |
| } | |
| .faq-question { | |
| padding: 1rem; | |
| font-weight: 600; | |
| color: var(--primary-color); | |
| cursor: pointer; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| background: var(--bg-light); | |
| } | |
| .faq-question i { | |
| color: var(--highlight-color); | |
| transition: var(--transition); | |
| } | |
| .faq-answer { | |
| padding: 0 1rem; | |
| color: var(--text-light); | |
| font-size: 0.9rem; | |
| max-height: 0; | |
| overflow: hidden; | |
| transition: max-height 0.3s ease, padding 0.3s ease; | |
| } | |
| .faq-item.active .faq-answer { | |
| max-height: 100px; | |
| padding: 0 1rem 1rem; | |
| } | |
| .faq-item.active .faq-question i { | |
| transform: rotate(180deg); | |
| } | |
| .contact-card { | |
| background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); | |
| border-radius: var(--radius-lg); | |
| padding: 2rem; | |
| color: white; | |
| box-shadow: var(--shadow-lg); | |
| } | |
| .contact-title { | |
| font-size: 1.3rem; | |
| font-weight: 700; | |
| margin-bottom: 1.5rem; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| } | |
| .contact-item { | |
| display: flex; | |
| align-items: flex-start; | |
| gap: 1rem; | |
| margin-bottom: 1.25rem; | |
| padding: 1rem; | |
| background: rgba(255, 255, 255, 0.1); | |
| border-radius: var(--radius-sm); | |
| transition: var(--transition); | |
| } | |
| .contact-item:hover { | |
| background: rgba(255, 255, 255, 0.15); | |
| transform: translateX(-5px); | |
| } | |
| .contact-icon { | |
| width: 40px; | |
| height: 40px; | |
| background: var(--highlight-color); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| flex-shrink: 0; | |
| } | |
| .contact-text { | |
| font-size: 0.9rem; | |
| line-height: 1.5; | |
| } | |
| .contact-label { | |
| font-size: 0.75rem; | |
| opacity: 0.7; | |
| margin-bottom: 2px; | |
| } | |
| .instagram-btn { | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| gap: 0.75rem; | |
| background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); | |
| color: white; | |
| padding: 1rem 1.5rem; | |
| border-radius: var(--radius-sm); | |
| text-decoration: none; | |
| font-weight: 600; | |
| margin-top: 1rem; | |
| transition: var(--transition); | |
| } | |
| .instagram-btn:hover { | |
| transform: scale(1.02); | |
| box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4); | |
| } | |
| /* Profile Section */ | |
| .profile-section { | |
| background: var(--bg-white); | |
| border-radius: var(--radius-lg); | |
| padding: 2.5rem; | |
| box-shadow: var(--shadow-lg); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .profile-section::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| height: 120px; | |
| background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); | |
| } | |
| .profile-header { | |
| display: flex; | |
| align-items: flex-end; | |
| gap: 2rem; | |
| margin-bottom: 2rem; | |
| position: relative; | |
| z-index: 1; | |
| } | |
| @media (max-width: 600px) { | |
| .profile-header { | |
| flex-direction: column; | |
| align-items: center; | |
| text-align: center; | |
| } | |
| } | |
| .profile-avatar { | |
| width: 140px; | |
| height: 140px; | |
| border-radius: 50%; | |
| border: 5px solid white; | |
| background: linear-gradient(135deg, var(--highlight-color), #ff6b6b); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-size: 3rem; | |
| color: white; | |
| font-weight: 900; | |
| box-shadow: var(--shadow-lg); | |
| flex-shrink: 0; | |
| } | |
| .profile-info { | |
| flex: 1; | |
| padding-bottom: 0.5rem; | |
| } | |
| .profile-name { | |
| font-size: 2rem; | |
| font-weight: 900; | |
| color: var(--primary-color); | |
| margin-bottom: 0.5rem; | |
| letter-spacing: 1px; | |
| } | |
| .profile-expertise { | |
| color: var(--text-light); | |
| font-size: 1rem; | |
| margin-bottom: 1rem; | |
| } | |
| .profile-stats { | |
| display: flex; | |
| gap: 2rem; | |
| } | |
| @media (max-width: 600px) { | |
| .profile-stats { | |
| justify-content: center; | |
| } | |
| } | |
| .stat-box { | |
| text-align: center; | |
| } | |
| .stat-number { | |
| font-size: 1.5rem; | |
| font-weight: 900; | |
| color: var(--primary-color); | |
| } | |
| .stat-label { | |
| font-size: 0.8rem; | |
| color: var(--text-light); | |
| } | |
| .profile-actions { | |
| display: flex; | |
| gap: 1rem; | |
| margin-bottom: 2rem; | |
| } | |
| @media (max-width: 600px) { | |
| .profile-actions { | |
| justify-content: center; | |
| flex-wrap: wrap; | |
| } | |
| } | |
| .btn { | |
| padding: 0.8rem 2rem; | |
| border-radius: var(--radius-sm); | |
| font-weight: 600; | |
| font-size: 0.95rem; | |
| cursor: pointer; | |
| transition: var(--transition); | |
| border: none; | |
| font-family: inherit; | |
| } | |
| .btn-primary { | |
| background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); | |
| color: white; | |
| } | |
| .btn-primary:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 5px 20px rgba(26, 26, 46, 0.3); | |
| } | |
| .btn-secondary { | |
| background: var(--bg-light); | |
| color: var(--primary-color); | |
| border: 2px solid var(--primary-color); | |
| } | |
| .btn-secondary:hover { | |
| background: var(--primary-color); | |
| color: white; | |
| } | |
| /* Categories */ | |
| .categories-title { | |
| font-size: 1.2rem; | |
| font-weight: 700; | |
| color: var(--primary-color); | |
| margin-bottom: 1rem; | |
| } | |
| .categories-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); | |
| gap: 1rem; | |
| margin-bottom: 2rem; | |
| } | |
| .category-tag { | |
| padding: 0.8rem 1rem; | |
| background: var(--bg-light); | |
| border-radius: var(--radius-sm); | |
| text-align: center; | |
| font-size: 0.9rem; | |
| color: var(--text-dark); | |
| transition: var(--transition); | |
| cursor: pointer; | |
| border: 2px solid transparent; | |
| } | |
| .category-tag:hover { | |
| background: white; | |
| border-color: var(--highlight-color); | |
| color: var(--highlight-color); | |
| transform: translateY(-2px); | |
| } | |
| /* Highlights */ | |
| .highlights-section { | |
| border-top: 1px solid #eee; | |
| padding-top: 2rem; | |
| } | |
| .highlights-title { | |
| font-size: 1.2rem; | |
| font-weight: 700; | |
| color: var(--primary-color); | |
| margin-bottom: 1rem; | |
| } | |
| .highlights-grid { | |
| display: flex; | |
| gap: 1rem; | |
| overflow-x: auto; | |
| padding-bottom: 0.5rem; | |
| } | |
| .highlight-item { | |
| min-width: 80px; | |
| text-align: center; | |
| cursor: pointer; | |
| } | |
| .highlight-circle { | |
| width: 70px; | |
| height: 70px; | |
| border-radius: 50%; | |
| background: linear-gradient(135deg, var(--highlight-color), #ff6b6b); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| margin: 0 auto 0.5rem; | |
| border: 3px solid white; | |
| box-shadow: var(--shadow-sm); | |
| transition: var(--transition); | |
| } | |
| .highlight-item:hover .highlight-circle { | |
| transform: scale(1.1); | |
| box-shadow: var(--shadow-md); | |
| } | |
| .highlight-circle i { | |
| color: white; | |
| font-size: 1.5rem; | |
| } | |
| .highlight-label { | |
| font-size: 0.75rem; | |
| color: var(--text-light); | |
| } | |
| /* Footer */ | |
| .footer { | |
| background: var(--primary-color); | |
| color: white; | |
| text-align: center; | |
| padding: 2rem; | |
| margin-top: 3rem; | |
| } | |
| .footer-text { | |
| font-size: 0.9rem; | |
| opacity: 0.8; | |
| } | |
| .footer-logo { | |
| font-size: 1.5rem; | |
| font-weight: 900; | |
| margin-bottom: 1rem; | |
| display: inline-block; | |
| } | |
| .footer-logo i { | |
| color: var(--highlight-color); | |
| } | |
| /* Animations */ | |
| @keyframes fadeInUp { | |
| from { | |
| opacity: 0; | |
| transform: translateY(20px); | |
| } | |
| to { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| } | |
| .animate-in { | |
| animation: fadeInUp 0.6s ease forwards; | |
| } | |
| .delay-1 { animation-delay: 0.1s; } | |
| .delay-2 { animation-delay: 0.2s; } | |
| .delay-3 { animation-delay: 0.3s; } | |
| .delay-4 { animation-delay: 0.4s; } | |
| /* Scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| height: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: var(--bg-light); | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: var(--accent-color); | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: var(--primary-color); | |
| } | |
| /* Responsive */ | |
| @media (max-width: 480px) { | |
| .container { | |
| padding: 1rem; | |
| } | |
| .section-title { | |
| font-size: 1.5rem; | |
| } | |
| .profile-header { | |
| flex-direction: column; | |
| align-items: center; | |
| } | |
| .profile-name { | |
| font-size: 1.5rem; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <!-- Header --> | |
| <header class="header"> | |
| <div class="header-content"> | |
| <a href="#" class="logo"> | |
| <i class="fas fa-play-circle"></i> | |
| ویو | |
| </a> | |
| <a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" class="built-with"> | |
| Built with anycoder | |
| </a> | |
| </div> | |
| </header> | |
| <main class="container"> | |
| <!-- Section 1: Most Viewed Clips --> | |
| <section class="animate-in"> | |
| <h2 class="section-title">پربازدیدترین کلیپها</h2> | |
| <div class="video-grid"> | |
| <!-- Video Card 1 --> | |
| <div class="video-card"> | |
| <div class="video-thumbnail"> | |
| <span class="view-count-badge"> | |
| <i class="fas fa-eye"></i> | |
| ۳۶,۰۰۰ بازدید | |
| </span> | |
| <div class="play-icon"> | |
| <i class="fas fa-play"></i> | |
| </div> | |
| </div> | |
| <div class="video-content"> | |
| <h3 class="video-title">بستن اپهای گوشی خوبه؟</h3> | |
| <p class="video-description">اپهای آفیون رو بندیم یا نبندیم؟ چرا؟</p> | |
| <div class="video-stats"> | |
| <span class="stat-item like"> | |
| <i class="fas fa-heart"></i> | |
| ۱۲,۳۴۵ | |
| </span> | |
| <span class="stat-item comment"> | |
| <i class="fas fa-comment"></i> | |
| ۱۰۹ | |
| </span> | |
| <span class="stat-item" style="margin-right: auto;"> | |
| <i class="fas fa-share"></i> | |
| اشتراکگذاری | |
| </span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Video Card 2 --> | |
| <div class="video-card"> | |
| <div class="video-thumbnail" style="background: linear-gradient(135deg, #667eea, #764ba2);"> | |
| <span class="view-count-badge"> | |
| <i class="fas fa-eye"></i> | |
| ۵۲,۸۰۰ بازدید | |
| </span> | |
| <div class="play-icon"> | |
| <i class="fas fa-play"></i> | |
| </div> | |
| </div> | |
| <div class="video-content"> | |
| <h3 class="video-title">چطور امنیت گوشی رو بالا ببریم؟</h3> | |
| <p class="video-description">ترفندهای ساده برای محافظت از گوشی</p> | |
| <div class="video-stats"> | |
| <span class="stat-item like"> | |
| <i class="fas fa-heart"></i> | |
| ۲۸,۹۲۰ | |
| </span> | |
| <span class="stat-item comment"> | |
| <i class="fas fa-comment"></i> | |
| ۴۵۶ | |
| </span> | |
| <span class="stat-item" style="margin-right: auto;"> | |
| <i class="fas fa-share"></i> | |
| اشتراکگذاری | |
| </span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Section 2: User Info and Social --> | |
| <section class="user-section animate-in delay-1"> | |
| <!-- User Introduction --> | |
| <div class="user-card"> | |
| <div class="user-intro"> | |
| <div class="user-avatar">ع</div> | |
| <h3 class="user-name">علی خرمدل</h3> | |
| </div> | |
| <p class="user-message"> | |
| مطالبتان به شدت مفید است. من همیشه منتظر ویدیوها و پستهای جدیدتون هستم تا با دوستانم به اشتراک بذارم. | |
| </p> | |
| </div> | |
| <!-- Comments Section --> | |
| <div class="comments-section"> | |
| <h3 class="comments-title"> | |
| <i class="fas fa-comments"></i> | |
| کامنتهای شما | |
| </h3> | |
| <div class="comment-item"> | |
| عالی بود! خیلی یاد گرفتم از این ویدیو 🙏 | |
| </div> | |
| <div class="comment-item"> | |
| لطفاً ویدیوی بیشتری درباره هوش مصنوعی بسازید 💡 | |
| </div> | |
| <div class="comment-item"> | |
| ممنون از محتوای باکیفیتتون 👏 | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Section 3: FAQ and Contact --> | |
| <section class="faq-contact-grid animate-in delay-2"> | |
| <!-- FAQ --> | |
| <div class="faq-card"> | |
| <h2 class="section-title" style="font-size: 1.5rem;">سوالات متداول</h2> | |
| <ul class="faq-list"> | |
| <li class="faq-item"> | |
| <div class="faq-question"> | |
| چطور میتوانم از فروشگاه خرید کنم؟ | |
| <i class="fas fa-chevron-down"></i> | |
| </div> | |
| <div class="faq-answer"> | |
| برای خرید از فروشگاه، ابتدا محصول مورد نظر را انتخاب کنید و سپس به صفحه پرداخت بروید. میتوانید از طریق درگاههای امن پرداخت اینترنتی خرید خود را تکمیل کنید. | |
| </div> | |
| </li> | |
| <li class="faq-item"> | |
| <div class="faq-question"> | |
| آیا میتوانم با هاتون همکاری داشته باشم؟ | |
| <i class="fas fa-chevron-down"></i> | |
| </div> | |
| <div class="faq-answer"> | |
| بله! برای همکاری میتوانید از طریق ایمیل یا صفحات اجتماعی با ما در ارتباط باشید. ما همیشه به دنبال همکاران خلاق و فعال هستیم. | |
| </div> | |
| </li> | |
| <li class="faq-item"> | |
| <div class="faq-question"> | |
| نمیتوانم توی وبسایت ثبت نام کنم. | |
| <i class="fas fa-chevron-down"></i> | |
| </div> | |
| <div class="faq-answer"> | |
| لطفاً مطمئن شوید که اطلاعات را به درستی وارد کردهاید. اگر مشکل ادامه داشت، با پشتیبانی تماس بگیرید تا در اسرع وقت کمکتان کنیم. | |
| </div> | |
| </li> | |
| </ul> | |
| </div> | |
| <!-- Contact Info --> | |
| <div class="contact-card"> | |
| <h3 class="contact-title"> | |
| <i class="fas fa-address-book"></i> | |
| اطلاعات تماس | |
| </h3> | |
| <a href="https://instagram.com" target="_blank" class="instagram-btn"> | |
| <i class="fab fa-instagram"></i> | |
| ما را در اینستاگرام دنبال کنید | |
| </a> | |
| <div class="contact-item"> | |
| <div class="contact-icon"> | |
| <i class="fas fa-map-marker-alt"></i> | |
| </div> | |
| <div class="contact-text"> | |
| <div class="contact-label">آدرس</div> | |
| ایران، تهران، میدان آزادی، کوچه ۳۴ متر مربع، پلاک ۲۴ | |
| </div> | |
| </div> | |
| <div class="contact-item"> | |
| <div class="contact-icon"> | |
| <i class="fas fa-phone"></i> | |
| </div> | |
| <div class="contact-text"> | |
| <div class="contact-label">شماره تماس</div> | |
| ۰۶۱ ۴۳۲۱ ۸۷۵۶ | |
| </div> | |
| </div> | |
| <div class="contact-item"> | |
| <div class="contact-icon"> | |
| <i class="fas fa-envelope"></i> | |
| </div> | |
| <div class="contact-text"> | |
| <div class="contact-label">ایمیل</div> | |
| info@view.com | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Section 4: User Profile --> | |
| <section class="profile-section animate-in delay-3"> | |
| <div class="profile-header"> | |
| <div class="profile-avatar">اه</div> | |
| <div class="profile-info"> | |
| <h2 class="profile-name">اهـــورا نیــــازی</h2> | |
| <p class="profile-expertise">فعال حوزه فناوری (Technology) — روشن باشید و آگاه</p> | |
| <div class="profile-stats"> | |
| <div class="stat-box"> | |
| <div class="stat-number">۱.۸M</div> | |
| <div class="stat-label">دنبالشونده</div> | |
| </div> | |
| <div class="stat-box"> | |
| <div class="stat-number">۱,۵۲۸</div> | |
| <div class="stat-label">پستها</div> | |
| </div> | |
| <div class="stat-box"> | |
| <div class="stat-number">۴۶۷</div> | |
| <div class="stat-label">دنبالکننده</div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="profile-actions"> | |
| <button class="btn btn-primary"> | |
| <i class="fab fa-instagram"></i> | |
| اینستاگرام | |
| </button> | |
| <button class="btn btn-secondary"> | |
| <i class="fas fa-paper-plane"></i> | |
| ارسال پیام | |
| </button> | |
| </div> | |
| <div class="categories-title">دستهبندیها</div> | |
| <div class="categories-grid"> | |
| <div class="category-tag">هوش مصنوعی</div> | |
| <div class="category-tag">معرفی محصول</div> | |
| <div class="category-tag">سفر</div> | |
| <div class="category-tag">درباره من</div> | |
| <div class="category-tag">تکنولوژی</div> | |
| <div class="category-tag">Seoul 2023</div> | |
| </div> | |
| <div class="highlights-section"> | |
| <h3 class="highlights-title">هایلایتها</h3> | |
| <div class="highlights-grid"> | |
| <div class="highlight-item"> | |
| <div class="highlight-circle"> | |
| <i class="fas fa-robot"></i> | |
| </div> | |
| <div class="highlight-label">AI</div> | |
| </div> | |
| <div class="highlight-item"> | |
| <div class="highlight-circle" style="background: linear-gradient(135deg, #667eea, #764ba2);"> | |
| <i class="fas fa-laptop"></i> | |
| </div> | |
| <div class="highlight-label">تکنولوژی</div> | |
| </div> | |
| <div class="highlight-item"> | |
| <div class="highlight-circle" style="background: linear-gradient(135deg, #f093fb, #f5576c);"> | |
| <i class="fas fa-plane"></i> | |
| </div> | |
| <div class="highlight-label">سفر</div> | |
| </div> | |
| <div class="highlight-item"> | |
| <div class="highlight-circle" style="background: linear-gradient(135deg, #4facfe, #00f2fe);"> | |
| <i class="fas fa-box-open"></i> | |
| </div> | |
| <div class="highlight-label">آنباکس</div> | |
| </div> | |
| <div class="highlight-item"> | |
| <div class="highlight-circle" style="background: linear-gradient(135deg, #43e97b, #38f9d7);"> | |
| <i class="fas fa-user"></i> | |
| </div> | |
| <div class="highlight-label">درباره</div> | |
| </div> | |
| <div class="highlight-item"> | |
| <div class="highlight-circle" style="background: linear-gradient(135deg, #fa709a, #fee140);"> | |
| <i class="fas fa-question"></i> | |
| </div> | |
| <div class="highlight-label">Q&A</div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <!-- Footer --> | |
| <footer class="footer"> | |
| <div class="footer-logo"> | |
| <i class="fas fa-play-circle"></i> | |
| ویو | |
| </div> | |
| <p class="footer-text">تمامی حقوق این وبسایت محفوظ میباشد © ۱۴۰۳</p> | |
| </footer> | |
| <script> | |
| // FAQ Toggle Functionality | |
| document.querySelectorAll('.faq-question').forEach(question => { | |
| question.addEventListener('click', () => { | |
| const item = question.parentElement; | |
| const isActive = item.classList.contains('active'); | |
| // Close all other items | |
| document.querySelectorAll('.faq-item').forEach(i => { | |
| i.classList.remove('active'); | |
| }); | |
| // Toggle current item | |
| if (!isActive) { | |
| item.classList.add('active'); | |
| } | |
| }); | |
| }); | |
| // Add scroll animation | |
| const observerOptions = { | |
| threshold: 0.1, | |
| rootMargin: '0px 0px -50px 0px' | |
| }; | |
| const observer = new IntersectionObserver((entries) => { | |
| entries.forEach(entry => { | |
| if (entry.isIntersecting) { | |
| entry.target.style.opacity = '1'; | |
| entry.target.style.transform = 'translateY(0)'; | |
| } | |
| }); | |
| }, observerOptions); | |
| document.querySelectorAll('.animate-in').forEach(el => { | |
| el.style.opacity = '0'; | |
| el.style.transform = 'translateY(20px)'; | |
| el.style.transition = 'opacity 0.6s ease, transform 0.6s ease'; | |
| observer.observe(el); | |
| }); | |
| // Add hover effects to video cards | |
| document.querySelectorAll('.video-card').forEach(card => { | |
| card.addEventListener('mouseenter', () => { | |
| card.style.transform = 'translateY(-8px)'; | |
| }); | |
| card.addouseleave',EventListener('m () => { | |
| card.style.transform = 'translateY(0)'; | |
| }); | |
| }); | |
| // Like button interaction | |
| document.querySelectorAll('.stat-item.like').forEach(btn => { | |
| btn.addEventListener('click', function() { | |
| const icon = this.querySelector('i'); | |
| if (icon.classList.contains('fas')) { | |
| icon.classList.remove('fas'); | |
| icon.classList.add('far'); | |
| icon.style.color = ''; | |
| } else { | |
| icon.classList.remove('far'); | |
| icon.classList.add('fas'); | |
| icon.style.color = '#e94560'; | |
| } | |
| }); | |
| }); | |
| </script> | |
| </body> | |
| </html> |