-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (135 loc) · 3.77 KB
/
Copy pathindex.html
File metadata and controls
136 lines (135 loc) · 3.77 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
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #fcfbf7;
margin: 0;
padding: 0;
}
.header {
text-align: center;
padding: 20px;
background: #ff5a5f;
color: white;
font-size: 26px;
}
.nav {
display: flex;
justify-content: space-around;
padding: 10px;
background: #ff5a5f;
}
.nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
background: #ff7e7e;
border-radius: 5px;
font-weight: bold;
}
.nav a:hover {
background: #ff3c4d;
}
.section-title {
text-align: center;
margin: 30px 0;
font-size: 30px;
color: #333;
font-weight: bold;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 20px;
}
.card {
background: #fff;
border: 1px solid #ddd;
border-radius: 12px;
width: 320px;
margin: 15px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.2s;
}
.card:hover {
transform: scale(1.05);
}
.card h3 {
margin-bottom: 10px;
color: #ff5a5f;
}
.card p {
margin-bottom: 15px;
color: #555;
}
.card a {
display: inline-block;
padding: 10px 15px;
background: #ff5a5f;
color: white;
text-decoration: none;
border-radius: 5px;
}
.card a:hover {
background: #ff3c4d;
}
.section {
margin: 30px 0;
}
</style>
</head>
<body>
<div class="header">Dashboard</div>
<div class="nav">
<a href="index.html">Home</a>
</div>
<div class="section">
<div class="section-title">For Influencers</div>
<div class="container">
<div class="card">
<h3>Campaigns</h3>
<p>View and manage your active campaigns.</p>
<a href="campaigns.html">Go to Campaigns</a>
</div>
<div class="card">
<h3>Earnings</h3>
<p>Track your earnings and payouts.</p>
<a href="earnings.html">View Earnings</a>
</div>
<div class="card">
<h3>Explore</h3>
<p>Discover new opportunities.</p>
<a href="explore.html">Explore Now</a>
</div>
</div>
</div>
<div class="section">
<div class="section-title">For Brands</div>
<div class="container">
<div class="card">
<h3>Brand Campaigns</h3>
<p>Manage your brand's campaigns.</p>
<a href="brand-campaigns.html">Manage Campaigns</a>
</div>
<div class="card">
<h3>Analytics</h3>
<p>Analyze campaign performance.</p>
<a href="analytics.html">View Analytics</a>
</div>
<div class="card">
<h3>Find Influencers</h3>
<p>Search and connect with influencers.</p>
<a href="influencers.html">Find Influencers</a>
</div>
</div>
</div>
</body>
</html>