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

ui part done #123

Merged
merged 1 commit into from
Oct 6, 2024
Merged
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
4 changes: 2 additions & 2 deletions frontend/src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { Link } from "react-router-dom";
import playstore from "../assets/favicon2.png";
import { FaHome, FaGithub, FaRegCopyright, FaDiscord, FaLinkedinIn } from 'react-icons/fa';
import { FaTwitter } from 'react-icons/fa6'; // Corrected import for Twitter icon
import { FaXTwitter } from 'react-icons/fa6'; // Corrected import for Twitter icon

const Footer = () => {
const currentYear = new Date().getFullYear();
Expand All @@ -27,7 +27,7 @@ const Footer = () => {
const socialMedia = [
{ Icon: FaGithub, link: 'https://github.com/manikumarreddyu/AgroTech-AI', color: '#333' },
{ Icon: FaDiscord, link: 'https://discord.gg/yRPQDDP6', color: '#7289DA' },
{ Icon: FaTwitter, link: 'https://twitter.com/YourTwitterHandle', color: '#1DA1F2' }, // Updated to FaTwitter
{ Icon: FaXTwitter, link: 'https://twitter.com/YourTwitterHandle', color: '#1DA1F2' }, // Updated to FaTwitter
{ Icon: FaLinkedinIn, link: 'https://www.linkedin.com/in/manikumarreddyu', color: '#0077B5' },
];

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Prices.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const Prices = () => {
/>
</h4>
<p className="text-xl font-bold">₹{ele[1]}</p>
<p className={`text-lg ${isGainer ? 'text-green-700' : 'text-red-700'}`}>
<p className={`text-lg ${isGainer ? 'text-white' : 'text-white'}`}>
{ele[2]}%
</p>
</div>
Expand Down
Loading