Skip to content

Commit

Permalink
Merge pull request #381 from Rucha-Ambaliya/feature/add-navbar-in-rev…
Browse files Browse the repository at this point in the history
…iews

Added navbar in reviews.html
  • Loading branch information
multiverseweb authored Jan 17, 2025
2 parents 3cfd042 + 59979d1 commit cb5bff9
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 19 deletions.
109 changes: 91 additions & 18 deletions website/pages/reviews.html
Original file line number Diff line number Diff line change
@@ -1,23 +1,96 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="../web_images/3dlogo.svg" type="image/x-icon">
<title>Dataverse Reviews</title>
<link rel="stylesheet" href="../styles/reviews.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="../web_images/3dlogo.svg"
type="image/x-icon"
/>
<title>Dataverse Reviews</title>
<link rel="stylesheet" href="../styles/style.css">
<link rel="stylesheet" href="../styles/reviews.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
</head>
<body>
<nav id="navbar">
<img
src="../web_images/3dlogo.svg"
alt="Dataverse Logo"
class="logo"
id="normal"
/>
<img
src="../web_images/3d_glow.webp"
alt="Dataverse Logo"
class="logo"
id="glow"
/>
<div class="scrollBar" id="progress_bar"></div>
<!--PROGRESS BAR-->
<a href="./login.html">
<button class="navbarButton">
<span class="button-text">Login</span>
<img
src="../web_images/user.png"
alt="User Icon"
class="user-icon"
/>
</button>
</a>
</nav>
<button class="burger" id="burger" onclick="show()"></button>
<button id="cross" class="burger" onclick="hide()"></button>
<div class="burger" id="lines">
<div class="line" id="l1"></div>
<div class="line" id="l2"></div>
<div class="line" id="l3"></div>
</div>
<div class="plane" id="plane">
<table>
<tr>
<td><a href="../../index.html" class="table_link">Home</a></td>
</tr>
<tr>
<td><a href="../../documentation.html" class="table_link">Documentation</a></td>
</tr>
<tr>
<td><a href="./versions.html" class="table_link">Versions</a></td>
</tr>
<tr>
<td><a href="./support.html" class="table_link">Support</a></td>
</tr>
<tr>
<td><a href="./contributor.html" class="table_link">Contributors</a></td>
</tr>
<tr>
<td id="current"><a href="./reviews.html" class="table_link">Reviews</a></td>
</tr>
<tr>
<td><a href="./license.html" class="table_link">License</a></td>
</tr>
<tr>
<td><a href="../../404.html" class="table_link">Stunning Visuals</a></td>
</tr>
<tr>
<td><a href="https://github.com/multiverseweb/Dataverse" class="table_link">Github Repository</a></td>
</tr>
</table>
</div>

<div class="reviewContainer">
<p class="reviewHeading">Dataverse Reviews</p>
<div id="average-rating"></div>
<div id="reviews-container" class="reviews-container">
<!-- Reviews will be dynamically inserted here -->
<div class="reviewContainer">
<p class="reviewHeading">Dataverse Reviews</p>
<div id="average-rating"></div>
<div id="reviews-container" class="reviews-container">
<!-- Reviews will be dynamically inserted here -->
</div>
</div>
</div>
<a href="../../index.html"><button class="goBack">Go To Home</button></a>
<script src="../scripts/beautifyReviews.js"></script>
</body>
<a href="../../index.html"><button class="goBack">Go To Home</button></a>
<script src="../scripts/beautifyReviews.js"></script>
<script src="../scripts/script.js" type="module"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion website/styles/reviews.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ body {

.reviewContainer {
text-align: center;
margin-top: 30px;
margin-top: 90px;
}

.reviewHeading {
Expand Down

0 comments on commit cb5bff9

Please sign in to comment.