Skip to content
Open
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
14 changes: 11 additions & 3 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ const Footer: React.FC = () => {
href: 'https://github.com/OpsiMate/OpsiMate', // From documentation
icon: Github
},
{
name: 'LinkedIn',
href: 'https://www.linkedin.com/company/opsimate/', // Official LinkedIn URL
icon: Linkedin
},
{
name: 'Slack Community',
href: 'https://join.slack.com/t/opsimate/shared_invite/zt-39bq3x6et-NrVCZzH7xuBGIXmOjJM7gA', // From documentation
Expand Down Expand Up @@ -59,9 +64,9 @@ const Footer: React.FC = () => {
key={social.name}
href={social.href}
className="text-gray-400 hover:text-white transition-colors duration-200"
aria-label={social.name}
target="_blank"
rel="noopener noreferrer"
aria-label={social.name}
>
<Icon size={20} />
</Link>
Expand All @@ -80,8 +85,8 @@ const Footer: React.FC = () => {
href={link.href}
className="text-gray-300 hover:text-white transition-colors duration-200"
{...(link.href.startsWith('http') && {
target: "_blank",
rel: "noopener noreferrer"
target: "_blank",
rel: "noopener noreferrer"
})}
>
{link.name}
Expand All @@ -100,6 +105,8 @@ const Footer: React.FC = () => {
<Link
href={link.href}
className="text-gray-300 hover:text-white transition-colors duration-200"
target="_blank"
rel="noopener noreferrer"
>
{link.name}
</Link>
Expand All @@ -126,6 +133,7 @@ const Footer: React.FC = () => {
))}
</ul>
</div>

</div>

{/* Bottom Section */}
Expand Down