Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chatbubble fix #55

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/ChatBubble/UserDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const UserDetails = ({ sent }: UserDetailsProps) => {
alt="Krishna"
height={58}
width={58}
className="flex-1 aspect-square h-10 w-10 md:h-14 md:w-14 rounded-full"
className="flex aspect-square h-10 w-10 md:h-14 md:w-14 rounded-full"
src={sent ? "/Avatars/arjuna.png" : "/Avatars/krishna.png"}
/>
<div
Expand Down
17 changes: 11 additions & 6 deletions components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export default function Navbar() {
>
About Us
</Link>
<h1></h1>
{/* <a
target="_blank"
rel="noreferrer"
Expand All @@ -49,6 +48,12 @@ export default function Navbar() {
>
Donate
</a> */}
<Link
className="inline-flex items-center border-b-2 border-transparent px-1 pt-1 text-sm font-medium text-gray-600 hover:border-gray-300 hover:text-gray-700"
href="/https://github.com/gita/Bhagavad-Gita-AI/" title='We are open source'
>
Open Source
</Link>
</div>
</div>

Expand Down Expand Up @@ -154,36 +159,36 @@ export default function Navbar() {
<Disclosure.Button
as="a"
href="/"
className="block border-l-4 border-primary-500 hover:bg-primary-100 py-2 pl-3 pr-4 text-base font-medium text-gray-500"
className="block border-l-4 mx-auto border-primary-500 hover:bg-primary-100 py-2 pl-3 pr-4 text-base font-medium text-gray-500"
>
Home
</Disclosure.Button>

<Disclosure.Button
as="a"
href="/about"
className="block border-l-4 border-primary-500 hover:bg-primary-100 py-2 pl-3 pr-4 text-base font-medium text-gray-500"
className="block border-l-4 mx-auto border-primary-500 hover:bg-primary-100 py-2 pl-3 pr-4 text-base font-medium text-gray-500"
>
About Us
</Disclosure.Button>
<Disclosure.Button
as="a"
href="https://opencollective.com/the-gita-initiative"
className="block border-l-4 border-transparent py-2 pl-3 pr-4 text-base font-medium text-gray-500 hover:border-gray-300 hover:bg-gray-50 hover:text-gray-700"
className="block border-l-4 border-transparent mx-auto py-2 pl-3 pr-4 text-base font-medium text-gray-500 hover:border-gray-300 hover:bg-gray-50 hover:text-gray-700"
>
Donate
</Disclosure.Button>
<Disclosure.Button
as="a"
href="https://bhagavadgita.io/"
className="block border-l-4 border-transparent py-2 pl-3 pr-4 text-base font-medium text-gray-500 hover:border-gray-300 hover:bg-gray-50 hover:text-gray-700"
className="block border-l-4 border-transparent py-2 px-4 text-base font-medium text-gray-500 hover:border-gray-300 hover:bg-gray-50 hover:text-gray-700"
>
BhagavadGita.io
</Disclosure.Button>
<Disclosure.Button
as="a"
href="https://play.google.com/store/apps/details?id=com.gitainitiative.bhagavadgita"
className="block border-l-4 border-transparent py-2 pl-3 pr-4 text-base font-medium text-gray-500 hover:border-gray-300 hover:bg-gray-50 hover:text-gray-700"
className="block border-l-4 border-transparent px-4 mx-auto pr-4 text-base font-medium text-gray-500 hover:border-gray-300 hover:bg-gray-50 hover:text-gray-700"
>
Bhagavad Gita App
</Disclosure.Button>
Expand Down