Skip to content

Commit 6c53dea

Browse files
committed
feat: update index.html and style.css with new CTA buttons for improved navigation and user experience
1 parent 0c43955 commit 6c53dea

2 files changed

Lines changed: 33 additions & 7 deletions

File tree

web/index.html

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,16 @@ <h2>Our Research Questions</h2>
7070

7171
<hr />
7272

73-
<p>
74-
👉 <a href="conclusion.html">Continue to results and conclusions →</a>
75-
</p>
73+
<div class="cta-button">
74+
<a href="./viz/">View Results & Conclusions</a>
75+
</div>
7676

77-
<p>
78-
👉 <a href="./viz/">Go to visualization</a><br />
79-
👉 <a href="./community/#/User_community">Explore user communities</a>
80-
</p>
77+
<div class="cta-button">
78+
<a href="./community/#/User_community">View Results & Conclusions</a>
79+
</div>
80+
81+
<div class="cta-button">
82+
<a href="./conclusion.html">View Results & Conclusions</a>
83+
</div>
8184
</body>
8285
</html>

web/style.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,27 @@ blockquote {
102102
margin-bottom: 40px;
103103
color: #777;
104104
font-weight: bold;
105+
}
106+
107+
.cta-button {
108+
text-align: center;
109+
margin: 50px 0;
110+
}
111+
112+
.cta-button a {
113+
display: inline-block;
114+
padding: 14px 28px;
115+
font-size: 1rem;
116+
font-weight: 600;
117+
text-decoration: none;
118+
color: white;
119+
background-color: #e74c3c;
120+
border-radius: 999px;
121+
box-shadow: 0 8px 24px rgba(231, 76, 60, 0.25);
122+
transition: transform 0.15s ease, box-shadow 0.15s ease;
123+
}
124+
125+
.cta-button a:hover {
126+
transform: translateY(-2px);
127+
box-shadow: 0 12px 30px rgba(231, 76, 60, 0.35);
105128
}

0 commit comments

Comments
 (0)