-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrecommended_connections.html
118 lines (104 loc) · 5.55 KB
/
recommended_connections.html
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recommended Connections</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="preload" as="style" onload="this.rel='stylesheet'" href="/assets/css/recommended_connections.css">
<meta name="description"
content="Access the connections page to find people you may know on Constellation Networking.">
<meta name="keywords" content="Constellation Networking, connections, find people, networking, network, connect">
<meta name="author" content="Constellation Networking Team">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FTXQ5HF0C5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-FTXQ5HF0C5');
</script>
<!-- Firebase -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
<script src="assets/js/firebase_init.js"></script>
</head>
<body class="bg-[#161616] text-white">
<div class="flex flex-1 min-h-full">
<!-- Sidebar -->
<div class="w-64 bg-[#1E1E1E] p-4 overflow-auto">
<a href="/index.html">
<div class="flex items-center mb-8">
<img src="/assets/img/icon.png" class="mr-2 rounded-md" width="40" height="40">
<span class="text-xl font-bold">Constellation</span>
</div>
</a>
<nav>
<ul>
<!-- <li class="mb-5"><a href="/index.html" class="flex items-center text-gray-400 hover:text-white"><i
class="fas fa-home mr-2"></i> Home</a></li> -->
<li class="mb-5"><a href="/connections.html"
class="flex items-center text-gray-400 hover:text-white"><i class="fas fa-user mr-2"></i> My
Constellation</a></li>
<li class="mb-5"><a href="#" class="flex items-center text-white"><i class="fas fa-star mr-2"></i>
Recommended</a></li>
</ul>
</nav>
</div>
<!-- Main Content -->
<div class="flex-1 p-6">
<!-- Header -->
<div class="flex justify-between items-center mb-6">
<div class="flex items-center">
<div class="flex items-center bg-[#2B2B2B] p-2 rounded-md">
<input type="text" placeholder="Search" class="bg-transparent text-white focus:outline-none"
id="searchbox">
<i class="fas fa-search text-gray-400 ml-2"></i>
</div>
</div>
<div class="flex items-center">
<button class="text-gray-400 hover:text-gray-600 duration-300 mx-4 fas fa-bell"></button>
<div>
<a href="/account.html">
<img src="/assets/img/default_user.jpeg" id="user-profile-img" alt="User Avatar"
class="rounded-full" width="40" height="40">
</a>
</div>
</div>
</div>
<div id="section:search-results" class="mb-6" style="display: none;">
<div class="flex justify-between items-center mb-4">
<h2 class="text-2xl font-bold">Search Results</h2>
</div>
<div class="grid grid-cols-1 gap-4" id="search-results">
<!-- search results here -->
</div>
</div>
<div id="section:all-missions">
<div class="flex justify-between items-center mb-4">
<h2 class="text-2xl font-bold">Recommended Connections</h2>
<a href="#" id="btn:view-all" class="text-blue-500 hover:text-blue-600 duration-300">View all</a>
</div>
<div class="grid grid-cols-1 gap-4" id="recommendedconnections">
<!-- Example card -->
<!-- <div class="bg-gray-800 px-4 py-2 rounded-md flex items-center relative">
<p class="absolute top-2 right-3 mt-2 mr-2 text-sm text-gray-400">Level: 02</p>
<button class="bg-blue-600 text-sm absolute bottom-4 right-3 mt-2 mr-2 px-4 py-2 rounded-md hover:bg-blue-700 duration-300">Chat</button>
<img src="/assets/img/default_user.jpeg" class="my-1 ml-1 rounded-md"
style="border-radius: 100%;" width="75" height="75">
<div class="ml-4">
<h3 class="text-lg font-bold">John Doe</h3>
<p class="text-sm truncate overflow-ellipsis overflow-hidden" id="user-bio">bio</p>
</div>
</div> -->
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="/assets/js/recommended_connections.js"></script>
</html>