Skip to content

Commit

Permalink
Footer section updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mohitjoping committed Aug 27, 2024
1 parent d84c977 commit 6ff83d6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
16 changes: 7 additions & 9 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function Footer() {

{/* Logo or Site Name */}
<div className="flex flex-col items-center md:items-start md:w-1/3 space-y-2">
<h2 className="font-extrabold text-2xl tracking-wider">GuruNimbus</h2>
<h2 className="font-extrabold text-2xl tracking-wider">Guru Nimbus</h2>
<p className="text-gray-400">Your gateway to quality education</p>
<p className="text-sm text-gray-500">Empowering learners everywhere</p>
</div>
Expand All @@ -25,19 +25,17 @@ export function Footer() {
{/* Social Media Icons */}
<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://www.facebook.com" target="_blank" rel="noopener noreferrer" className="hover:text-blue-500">
<FaFacebook className="h-6 w-6" />
</a>
<a href="https://www.twitter.com" target="_blank" rel="noopener noreferrer" className="hover:text-blue-500">

<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:example@gmail.com" className="hover:text-blue-500">
<a href="mailto:hellomohit21@gmail.com" className="hover:text-blue-500">
<FaEnvelope className="h-6 w-6" />
</a>
<a href="https://www.youtube.com" target="_blank" rel="noopener noreferrer" className="hover:text-blue-500">
<a href="https://www.youtube.com/@mohitjoping" target="_blank" rel="noopener noreferrer" className="hover:text-blue-500">
<FaYoutube className="h-6 w-6" />
</a>
<a href="https://www.github.com" target="_blank" rel="noopener noreferrer" className="hover:text-blue-500">
<a href="https://github.com/Suraj-kumar00/GuruNimbus.git" target="_blank" rel="noopener noreferrer" className="hover:text-blue-500">
<FaGithub className="h-6 w-6" />
</a>
</div>
Expand All @@ -50,7 +48,7 @@ export function Footer() {
{/* Footer Bottom */}
<div className="mt-8 border-t border-gray-700 pt-4">
<p className="text-center text-gray-400 text-xs">
&copy; {new Date().getFullYear()} GuruNimbus. All rights reserved.
&copy; {new Date().getFullYear()} Guru Nimbus. All rights reserved.
</p>
</div>
</div>
Expand Down
15 changes: 8 additions & 7 deletions src/components/ui/people.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ const people = [
image:
"/img.png",
},

{
id: 2,
name: "Suraj Kumar",
designation: "DevOps Engineer",
image:
"/suraj.jpeg",
},
{
id: 3,
name: "Kumari Anjali",
Expand All @@ -18,13 +26,6 @@ const people = [
"/anjali.jpeg",
},

{
id: 2,
name: "Suraj Kumar",
designation: "devops Engineer",
image:
"/suraj.jpeg",
},


];
Expand Down

0 comments on commit 6ff83d6

Please sign in to comment.