Skip to content

Commit

Permalink
Merge pull request #22 from mohitjoping/mohitjoping
Browse files Browse the repository at this point in the history
update the footer content and link added to logo
  • Loading branch information
Suraj-kumar00 authored Aug 27, 2024
2 parents 634526c + 2a15978 commit a651843
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 16 deletions.
4 changes: 1 addition & 3 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ export function Footer() {
<div className="flex flex-col items-center md:items-end md:w-1/3 space-y-4">
<div className="flex space-x-4">

<a href="https://x.com/mohitjoping" target="_blank" rel="noopener noreferrer" className="hover:text-blue-500">
<FaTwitter className="h-6 w-6" />
</a>

<a href="mailto:[email protected]" className="hover:text-blue-500">
<FaEnvelope className="h-6 w-6" />
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/components/HeroSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function HeroSection() {
</h2>

<p className="text-gray-300 max-w-lg my-2 text-sm md:text-base">
Building GuruNimbus, an advanced AI-powered RAG chatbot that
Building Guru Nimbus, an advanced AI-powered RAG chatbot that
intelligently guides you in rating and discovering the best
professors.
</p>
Expand Down
1 change: 1 addition & 0 deletions src/components/ui/animated-tool.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const AnimatedTooltip = ({
name: string;
designation: string;
image: string;
link: string;
}[];
}) => {
const [hoveredIndex, setHoveredIndex] = useState<number | null>(null);
Expand Down
20 changes: 10 additions & 10 deletions src/components/ui/floating-navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,16 @@ export const FloatingNav = ({
className
)}
>
<div className="flex flex-row items-center gap-3">
<img
src="/gurunimbus.png"
alt="GuruNimbus Logo"
className="h-8 w-8"
/>
<h1 className="text-lg text-white">
Guru Nimbus
</h1>
</div>
<Link href="/" passHref>
<div className="flex flex-row items-center gap-3 cursor-pointer">
<img
src="/gurunimbus.png"
alt="GuruNimbus Logo"
className="h-8 w-8"
/>
<h1 className="text-lg text-white">Guru Nimbus</h1>
</div>
</Link>
<div className="flex flex-row justify-center items-center space-x-8">
{navItems.map((navItem: any, idx: number) => (
<Link
Expand Down
17 changes: 15 additions & 2 deletions src/components/ui/people.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
"use client";
import React from "react";
import { AnimatedTooltip } from "@/components/ui/animated-tool";
import Image from 'next/image';

const people = [
{
id: 1,
name: "Mohit Joping",
designation: "Software Engineer",
image:
"/img.png",
link: "https://x.com/mohitjoping",
},

{
Expand All @@ -17,13 +18,15 @@ const people = [
designation: "DevOps Engineer",
image:
"/suraj.jpeg",
link: "https://x.com/surajk_umar01",
},
{
id: 3,
name: "Kumari Anjali",
designation: "Software Engineer",
image:
"/anjali.jpeg",
link: "https://www.linkedin.com/in/kumarianjali10/",
},


Expand All @@ -33,7 +36,17 @@ const people = [
export function People() {
return (
<div className="flex flex-row items-center justify-center mb-10 w-full">
<AnimatedTooltip items={people} />
{people.map((person) => (
<a
key={person.id}
href={person.link}
target="_blank"
rel="noopener noreferrer"
className="mx-1"
>
<AnimatedTooltip items={[person]} />
</a>
))}
</div>
);
}

0 comments on commit a651843

Please sign in to comment.