Skip to content

Commit

Permalink
Merge pull request #57 from vishesh-baghel/54-add-post-installation-page
Browse files Browse the repository at this point in the history
added thank you page
  • Loading branch information
vishesh-baghel authored Jan 15, 2024
2 parents 230c7c3 + a2c17a4 commit fc5b751
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Glidee-bot helps developers save time and effort while doing code reviews. It pr

- Glidee-bot recalculates and updates the risk scores for all the files in real-time. The current and predicted risk scores are updated whenever a pull request is closed

- If you want to dig deeper, read this [article](https://visheshbaghel.hashnode.dev/how-to-build-an-automated-bug-predicting-bot-with-zero-ai-knowledge) that explains how glidee-bot works in detail

## See Glidee-bot in action!

**Glidee-bot adds this comment whenever a new pull request is opened**
Expand Down
66 changes: 65 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<!-- <html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
Expand All @@ -14,4 +14,68 @@ <h1>Probot + Netlify Functions example</h1>
>
</p>
</body>
</html> -->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<link
href="https://fonts.googleapis.com/css?family=Lato:300,400|Montserrat:700"
rel="stylesheet"
type="text/css"
/>
<style>
@import url(//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.min.css);
@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);
</style>
<link
rel="stylesheet"
href="https://2-22-4-dot-lead-pages.appspot.com/static/lp918/min/default_thank_you.css"
/>
<script src="https://2-22-4-dot-lead-pages.appspot.com/static/lp918/min/jquery-1.9.1.min.js"></script>
<script src="https://2-22-4-dot-lead-pages.appspot.com/static/lp918/min/html5shiv.js"></script>
</head>
<body>
<div class="pageLoad">
<div class="inner">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<header class="site-header" id="header">
<h1 class="site-header__title" data-lead-id="site-header-title">
THANK YOU!
</h1>
</header>

<div class="main-content">
<i class="fa fa-check main-content__checkmark" id="checkmark"></i>
<p class="main-content__body" data-lead-id="main-content-body">
Thanks for installing Glidee-bot. It means a lot to us. You can see the
demo below to see how glidee-bot helps you during code reviews.
</p>
<br />
<br />
<div style="position: relative; padding-bottom: 56.25%; height: 0">
<iframe
src="https://www.loom.com/embed/b320b6351ba54193a9b982456b3e97c9?sid=796ec60e-7b2d-49b7-b713-ff2ad1e2d84c"
frameborder="0"
webkitallowfullscreen
mozallowfullscreen
allowfullscreen
style="position: absolute; top: 0; left: 0; width: 100%; height: 100%"
></iframe>
</div>
</div>

<footer class="site-footer" id="footer">
<p class="site-footer__fineprint" id="fineprint">
Copyright ©2024 | All Rights Reserved
</p>
</footer>
</body>
</html>

0 comments on commit fc5b751

Please sign in to comment.