Skip to content
Closed
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
7 changes: 7 additions & 0 deletions src/assets/XLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 8 additions & 8 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ import {
CheckCircle,
ExternalLink,
Rss,
Twitter,
Linkedin,
Youtube,
} from "lucide-react";
import { Link } from "react-router-dom";
import logoF from "../assets/logo.png";
import { ReactComponent as XLogo } from "../assets/XLogo.svg";

const Footer = () => {
const currentYear = new Date().getFullYear();
Expand All @@ -49,11 +49,12 @@ const Footer = () => {
"hover:bg-gray-900 dark:hover:bg-gray-100 hover:text-white dark:hover:text-gray-900",
},
{
name: "Twitter",
href: "https://twitter.com/civix",
icon: Twitter,
description: "Follow us on Twitter",
color: "hover:bg-blue-400 hover:text-white",
name: "X",
href: "https://x.com/civix",
icon: XLogo,
description: "Follow us on X",
color:
"hover:bg-gray-900 dark:hover:bg-gray-100 hover:text-white dark:hover:text-gray-900",
},
{
name: "LinkedIn",
Expand Down Expand Up @@ -503,7 +504,6 @@ const Footer = () => {
<div className="space-y-4">
<p className="text-slate-600 dark:text-slate-300 text-sm">
Subscribe to get updates on new features

</p>

{isSubscribed ? (
Expand Down Expand Up @@ -553,7 +553,7 @@ const Footer = () => {
)}

<p className="text-xs text-slate-500 dark:text-slate-400">
Unsubscribe at any time.
Unsubscribe at any time.
</p>
</div>
</div>
Expand Down