-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (122 loc) · 5.57 KB
/
Copy pathindex.html
File metadata and controls
133 lines (122 loc) · 5.57 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Setflix — Who's Watching?</title>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/landing.css">
</head>
<body>
<!-- Netflix-style TUDUM Intro Animation - Full 3 seconds -->
<div class="intro-overlay" id="introOverlay">
<div class="setflix-intro">
<div class="setflix-logo-container">
<!-- Netflix N-style ribbon animation -->
<div class="logo-ribbons">
<div class="ribbon ribbon-left"></div>
<div class="ribbon ribbon-right"></div>
</div>
<div class="setflix-text">SETFLIX</div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="main-content" id="mainContent">
<!-- Background -->
<div class="netflix-bg"></div>
<!-- Header - Netflix style with full navigation -->
<header class="header">
<div class="header-left">
<div class="logo">
<div class="header-logo-text">SETFLIX</div>
</div>
<nav class="primary-nav">
<a href="#" class="nav-item active">Home</a>
<a href="#" class="nav-item">Projects</a>
<a href="#" class="nav-item">Skills</a>
<a href="#" class="nav-item">About</a>
<a href="#" class="nav-item">Contact</a>
</nav>
</div>
<div class="header-right">
<button class="icon-btn search-btn">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="11" cy="11" r="8"></circle>
<path d="m21 21-4.35-4.35"></path>
</svg>
</button>
<button class="icon-btn notif-btn">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"></path>
<path d="M13.73 21a2 2 0 0 1-3.46 0"></path>
</svg>
</button>
<div class="profile-dropdown">
<img src="assets/simple.png" alt="Profile" class="header-avatar">
<svg class="caret" viewBox="0 0 24 24" fill="currentColor">
<path d="M7 10l5 5 5-5z"/>
</svg>
</div>
</div>
</header>
<!-- Profile Selection -->
<section class="profile-section">
<h1 class="profile-title">Who's watching?</h1>
<div class="profiles-grid">
<!-- Profile 1: Simple -->
<a href="Portfolio_Simple/index.html" class="profile">
<div class="profile-avatar">
<img src="assets/simple.png" alt="Simple" class="profile-preview">
</div>
<span class="profile-name">Simple</span>
</a>
<!-- Profile 2: Game -->
<a href="Portfolio_Game/index.html" class="profile">
<div class="profile-avatar">
<img src="assets/game.png" alt="Game" class="profile-preview">
</div>
<span class="profile-name">Gamer</span>
</a>
<!-- Profile 3: Forest -->
<a href="Portfolio_Forest/Index.html" class="profile">
<div class="profile-avatar">
<img src="assets/forest.png" alt="Forest" class="profile-preview">
</div>
<span class="profile-name">Explorer</span>
</a>
<!-- Profile 4: Hacker -->
<a href="Portfolio_Hacker/Index.html" class="profile">
<div class="profile-avatar">
<img src="assets/hack.png" alt="Hacker" class="profile-preview">
</div>
<span class="profile-name">Hacker</span>
</a>
<!-- Add Profile -->
<div class="profile add-profile" id="addProfile">
<div class="profile-avatar add-avatar">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
</svg>
</div>
<span class="profile-name">Add Profile</span>
</div>
</div>
<!-- Manage Profiles Button - Netflix style -->
<button class="manage-profiles-btn" id="manageBtn">Manage Profiles</button>
</section>
<!-- Footer Links - Netflix style -->
<footer class="footer">
<div class="footer-links">
<a href="https://github.com/Happyesss/potfolio" target="_blank">GitHub</a>
<a href="#">Portfolio</a>
<a href="#">LinkedIn</a>
<a href="#">Contact</a>
</div>
<p class="footer-credit">Designed & Built by <a href="https://github.com/Happyesss">Shashank Kumar Rathour</a></p>
<p class="footer-year">© 2026 Setflix</p>
</footer>
</div>
<script src="js/landing.js"></script>
</body>
</html>