Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushithamsilva committed Jan 30, 2024
2 parents 1d2eeb2 + f33898a commit f2f493f
Show file tree
Hide file tree
Showing 13 changed files with 1,110 additions and 854 deletions.
2 changes: 1 addition & 1 deletion docs/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1455,4 +1455,4 @@ section {
#footer .footer-top .footer-info {
margin: -20px 0 30px 0;
}
}
}
Binary file added docs/assets/img/Coach-feedback.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/Demo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/User-feedback.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/buck-booster.webp
Binary file not shown.
Binary file added docs/assets/img/buddy-labled.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/dashboard-screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/hub-labled.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 11 additions & 7 deletions docs/download.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="download.css" />
<script src="./func.js"></script>
Expand Down Expand Up @@ -37,10 +41,10 @@
<div class="cs-ul-wrapper">
<ul id="cs-expanded" class="cs-ul" aria-expanded="false">
<li class="cs-li">
<a href="" class="cs-li-link cs-active"> Home </a>
<a href="index.html" class="cs-li-link cs-active"> Home </a>
</li>
<li class="cs-li">
<a href="#Problem" class="cs-li-link"> Problem </a>
<a href="index.html#Problem" class="cs-li-link"> Problem </a>
</li>
<!--Copy and paste this cs-dropdown list item and replace any .cs-li with this cs-dropdown group to make a new dropdown and it will work-->
<li class="cs-li cs-dropdown" tabindex="0">
Expand All @@ -58,13 +62,13 @@
</span>
<ul class="cs-drop-ul">
<li class="cs-drop-li">
<a href="#Solution" class="cs-li-link cs-drop-link"
<a href="index.html#Solution" class="cs-li-link cs-drop-link"
>Our Solution</a
>
</li>
<li class="cs-drop-li">
<a
href="#SolutionArchitecture"
href="index.html#SolutionArchitecture"
class="cs-li-link cs-drop-link"
>Solution Architecture</a
>
Expand All @@ -86,13 +90,13 @@
</span>
<ul class="cs-drop-ul">
<li class="cs-drop-li">
<a href="#Solution" class="cs-li-link cs-drop-link"
<a href="index.html#Hardware" class="cs-li-link cs-drop-link"
>Infrastructure</a
>
</li>
<li class="cs-drop-li">
<a
href="#SolutionArchitecture"
href="index.html#video-gallery"
class="cs-li-link cs-drop-link"
>3D Designs</a
>
Expand All @@ -104,7 +108,7 @@
</li>

<li class="cs-li">
<a href="#meet-us-1021" class="cs-li-link"> About Us </a>
<a href="index.html#meet-us-1021" class="cs-li-link"> About Us </a>
</li>
</ul>
</div>
Expand Down
13 changes: 12 additions & 1 deletion docs/func.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,15 @@ document.getElementById('dark-mode-toggle').addEventListener('click', () => {
localStorage.getItem('theme') === 'light' ? enableDarkMode() : disableDarkMode();
});


function openModal(imgSrc) {
var modal = document.getElementById("myModal");
var modalImg = document.getElementById("modalImg");
modal.style.display = "block";
modalImg.src = imgSrc;
}

function closeModal() {
var modal = document.getElementById("myModal");
modal.style.display = "none";
}

275 changes: 216 additions & 59 deletions docs/index.html

Large diffs are not rendered by default.

Loading

0 comments on commit f2f493f

Please sign in to comment.