Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
SrijaVuppala295 committed Oct 28, 2024
1 parent 75c71a2 commit 4cbc468
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 49 deletions.
49 changes: 10 additions & 39 deletions src/app/components/header/header.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
Expand All @@ -9,6 +10,12 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/ScrollTrigger.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/i18next/21.6.10/i18next.min.js"></script>
<!-- <iframe
src="https://www.chatbase.co/chatbot-iframe/L51AYDMWE0tDQxPXKTgeX"
width="100%"
style="height: 100%; min-height: 700px"
frameborder="0"
></iframe> -->
<style>
/* .canvas_1 {
color: #333;
Expand Down Expand Up @@ -70,51 +77,17 @@
height: 25px;
width: 25px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html, body {
height: 100%; /* Ensure full height */
overflow: hidden; /* Prevent body scrolling */
}

/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
background: #f0f0f0; /* Background of the track */
}

::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #ff66b2, #8a2be2); /* Pink to Violet gradient */
border-radius: 10px; /* Rounded corners for the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, #ff99cc, #9b59b6); /* Lighter gradient on hover */
}

/* For Firefox */
html {
scrollbar-width: thin; /* Makes the scrollbar thin */
scrollbar-color: #ff66b2 #800ab3; /* Color of the thumb and track */
}


</style>
</head>

<body>

<header>
<nav style="display: flex; justify-content: space-between; align-items: center; padding: 10px 0; background-color: #1a1a2e;">
<div class="logo" style="display: flex; align-items: center;">
<img src='/a.png' alt="Logo"
style="height: 70px; width: 75px; border-radius: 50%; margin-right: 10px; object-fit: contain; image-rendering: auto; filter: none;"/>

<img src="a.png" alt="Logo" style="height: 70px; width: 75px; border-radius: 50%; margin-right: 10px;" />
<a href="#hero" style="color: white; font-size: 1.5rem; text-decoration: none; white-space: nowrap;">GraphExplorer Pro</a>
</div>

Expand Down Expand Up @@ -289,12 +262,10 @@ <h3 data-i18n="undirected-graphs">Undirected Graphs</h3>
</div>
<div class="graph-item">
<div class="graph-icon">⚖️</div>
<a href="../Graphs/weightedgraph.html">
<h3 data-i18n="weighted-graphs">Weighted Graphs</h3>
</div>
<div class="graph-item">
<div class="graph-icon">🌳</div>
<a href="../Graphs/tree.html">
<h3 data-i18n="trees">Trees</h3>
</div>
<div class="graph-item">
Expand Down
6 changes: 4 additions & 2 deletions src/app/components/navbar/navbar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,12 @@
</script>
<script>
window.embeddedChatbotConfig = {
chatbotId: "oA_rXZ5BFgXbM-YwcC0vx",
chatbotId:"L51AYDMWE0tDQxPXKTgeX",
domain: "www.chatbase.co"
};
</script>
<script src="https://www.chatbase.co/embed.min.js" chatbotId="oA_rXZ5BFgXbM-YwcC0vx" domain="www.chatbase.co"
<script src="https://www.chatbase.co/embed.min.js" chatbotId="L51AYDMWE0tDQxPXKTgeX" domain="www.chatbase.co"
defer></script>


</div>
16 changes: 8 additions & 8 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -516,14 +516,14 @@ <h2>Contact Us</h2>
</script>


<script>
window.embeddedChatbotConfig = {
chatbotId: "oA_rXZ5BFgXbM-YwcC0vx",
domain: "www.chatbase.co"
}
</script>
<script src="https://www.chatbase.co/embed.min.js" chatbotId="oA_rXZ5BFgXbM-YwcC0vx" domain="www.chatbase.co"
defer></script>
<script>
window.embeddedChatbotConfig = {
chatbotId:"L51AYDMWE0tDQxPXKTgeX",
domain: "www.chatbase.co"
};
</script>
<script src="https://www.chatbase.co/embed.min.js" chatbotId="L51AYDMWE0tDQxPXKTgeX" domain="www.chatbase.co"
defer></script>

<script>
const scrollButton = document.getElementById('scrollToTopBtn');
Expand Down

0 comments on commit 4cbc468

Please sign in to comment.