-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsocialmedia.html
More file actions
119 lines (112 loc) · 5.39 KB
/
Copy pathsocialmedia.html
File metadata and controls
119 lines (112 loc) · 5.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>RezaCypher · Social Media</title>
<link rel="stylesheet" href="style.main.css">
<link rel="stylesheet" href="style.social.css">
</head>
<body data-theme="dark">
<canvas id="hexCanvas"></canvas>
<div class="sidebar-overlay" id="sidebarOverlay"></div>
<div class="sidebar" id="sidebar">
<div style="text-align: center; margin-bottom: 20px;">
<h3 style="color: var(--accent-primary); text-transform: uppercase; letter-spacing: 2px;">Menu</h3>
</div>
<div class="sidebar-grid">
<a href="cv.html" class="sidebar-item" data-section="cv"><span class="sidebar-icon">📄</span><span class="sidebar-label">CV</span></a>
<a href="projects.html" class="sidebar-item" data-section="projects"><span class="sidebar-icon">📁</span><span class="sidebar-label">Projects</span></a>
<a href="blogs.html" class="sidebar-item" data-section="blogs"><span class="sidebar-icon">📝</span><span class="sidebar-label">Blogs</span></a>
<a href="socialmedia.html" class="sidebar-item active" data-section="social"><span class="sidebar-icon">💬</span><span class="sidebar-label">Social</span></a>
</div>
</div>
<div class="content">
<header class="portfolio-header" id="mainHeader">
<div class="header-logo-area">
<div class="header-logo" id="headerLogo">
<img src="img/cypherlogo_s.png" class="logo-light" alt="RezaCypher Logo" style="display:none;">
<img src="img/cypherlogo_s_black.png" class="logo-dark" alt="RezaCypher Logo">
</div>
<div class="header-text">
<span class="header-title">RezaCypher</span>
<span class="header-subtitle" id="currentPage">SOCIAL MEDIA</span>
</div>
</div>
<div class="header-controls">
<button class="theme-toggle" id="themeToggle" title="Toggle theme">🌙</button>
<button class="sidebar-toggle" id="sidebarToggle" title="Toggle sidebar">☰</button>
</div>
</header>
<main class="cv-main" id="cvContent">
<div class="social-container">
<h2 class="page-title">Connect With Me</h2>
<!-- ========== YouTube Featured Section ========== -->
<section class="youtube-featured">
<div class="youtube-badge">▶️ YouTube</div>
<h3 class="youtube-channel">RezaCypher</h3>
<p class="youtube-desc">Subscribe for coding tutorials, game dev logs, and more!</p>
<div class="playlist-row">
<a href="https://www.youtube.com/@rezacypher/playlist1" target="_blank" rel="noopener" class="playlist-card">
<span class="playlist-icon">🎬</span>
<span class="playlist-name">Playlist 1</span>
</a>
<a href="https://www.youtube.com/@rezacypher/playlist2" target="_blank" rel="noopener" class="playlist-card">
<span class="playlist-icon">🎬</span>
<span class="playlist-name">Playlist 2</span>
</a>
<a href="https://www.youtube.com/@rezacypher/playlist3" target="_blank" rel="noopener" class="playlist-card">
<span class="playlist-icon">🎬</span>
<span class="playlist-name">Playlist 3</span>
</a>
</div>
</section>
<!-- ========== Other Social Platforms ========== -->
<div class="social-grid">
<a href="https://steamcommunity.com/id/rezacypher/" target="_blank" rel="noopener" class="social-card">
<div class="social-icon">🎮</div>
<h3>Steam</h3>
<p>Add me on Steam</p>
</a>
<a href="https://t.me/rezacypher" target="_blank" rel="noopener" class="social-card">
<div class="social-icon">✈️</div>
<h3>Telegram</h3>
<p>Chat with me on Telegram</p>
</a>
<a href="https://wa.me/yourphonenumber" target="_blank" rel="noopener" class="social-card">
<div class="social-icon">💬</div>
<h3>WhatsApp</h3>
<p>Message me on WhatsApp</p>
</a>
<a href="https://ble.ir/rezacypher" target="_blank" rel="noopener" class="social-card">
<div class="social-icon">🌐</div>
<h3>Bale</h3>
<p>Find me on Bale</p>
</a>
<a href="mailto:rezacypher@gmail.com" class="social-card">
<div class="social-icon">📧</div>
<h3>Gmail</h3>
<p>Send me an email</p>
</a>
<a href="https://instagram.com/rezacypher" target="_blank" rel="noopener" class="social-card">
<div class="social-icon">📷</div>
<h3>Instagram</h3>
<p>Follow my visual journey</p>
</a>
</div>
</div>
</main>
<footer class="portfolio-footer" id="mainFooter">
<a href="cv.html" class="footer-link" data-section="cv">CV</a>
<a href="projects.html" class="footer-link" data-section="projects">Projects</a>
<a href="blogs.html" class="footer-link" data-section="blogs">Blogs</a>
<a href="socialmedia.html" class="footer-link active" data-section="social">Social Media</a>
</footer>
</div>
<script src="script.main.js"></script>
<script>
document.getElementById('currentPage').textContent = 'SOCIAL MEDIA';
</script>
<script src="script.cursor.js"></script>
</body>
</html>