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

Update logo #45

Open
wants to merge 1 commit 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 @@ -16,7 +16,7 @@ const UserDetails = ({ sent }: UserDetailsProps) => {
height={58}
width={58}
className="flex-1 aspect-square h-10 w-10 md:h-14 md:w-14 rounded-full"
src={sent ? "/Avatars/arjuna.png" : "/Avatars/krishna.png"}
src={sent ? "/Avatars/arjuna.jpg" : "/Avatars/krishna.jpg"}
/>
<div
className={`flex flex-col gap-2 ${sent ? "justify-end items-end" : ""}`}
Expand Down
39 changes: 26 additions & 13 deletions components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
import React from "react";
import Image from "next/image";
import Tooltip from "./Tooltip";

const Header = () => {
return (
<header>
<h1 className="text-4xl md:text-3xl flex items-center justify-center text-center bg-clip-text h-10 md:h-16 text-transparent bg-gradient-to-r from-yellow-500 to-orange-500 font-extrabold mb-1">
BhagavadGita.ai
<Image
src="/BhagavadGitaai.png"
alt="Bhagavad Gita AI"
width={195.2}
height={40}
/>
</h1>
<p className="text-md leading-normal text-center text-gray-500">
Unlock Your Potential with GitaGPT - The AI-Powered Spiritual Companion.
Expand All @@ -26,21 +30,30 @@ const Header = () => {
300,000+ devotees guided so far
</p>
<div className="ml-2">
<Tooltip message={"Follow us on Twitter!"}>
<a href="https://twitter.com/ShriKrishna" target="_blank" rel="noreferrer">
<Image src="/icons8-twitter-96.png" alt="Twitter" width={20} height={20} />
</a>
</Tooltip>
<a
href="https://twitter.com/ShriKrishna"
target="_blank"
rel="noreferrer"
>
<Image
src="/icons8-twitter-96.png"
alt="Twitter"
width={20}
height={20}
/>
</a>
</div>
<div className="ml-1">
<Tooltip message={"Gita AI is open source. Come contribute."}>
<a href="https://github.com/gita" target="_blank" rel="noreferrer">
<Image src="/icons8-github-90.png" alt="Github" width={20} height={20} />
</a>
</Tooltip>
<a href="https://github.com/gita" target="_blank" rel="noreferrer">
<Image
src="/icons8-github-90.png"
alt="Github"
width={20}
height={20}
/>
</a>
</div>
</div>

</header>
);
};
Expand Down
11 changes: 5 additions & 6 deletions components/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Fragment } from "react";
import { Disclosure, Menu, Transition } from "@headlessui/react";
import { Bars3Icon, BellIcon, XMarkIcon } from "@heroicons/react/24/outline";
import { Disclosure } from "@headlessui/react";
import { Bars3Icon, XMarkIcon } from "@heroicons/react/24/outline";
import Link from "next/link";

function classNames(...classes: string[]) {
Expand Down Expand Up @@ -28,15 +27,15 @@ export default function Example() {
>
About Us
</Link>
{/* <a
<a
target="_blank"
rel="noreferrer"
referrerPolicy="no-referrer"
href="https://github.com/sponsors/gita"
href="https://opencollective.com/the-gita-initiative"
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"
>
Donate
</a> */}
</a>
</div>
</div>

Expand Down
15 changes: 0 additions & 15 deletions components/Tooltip.tsx

This file was deleted.

Binary file added public/Avatars/arjuna.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 removed public/Avatars/arjuna.png
Binary file not shown.
Binary file added public/Avatars/krishna.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 removed public/Avatars/krishna.png
Binary file not shown.
Binary file added public/BhagavadGitaai.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.