Skip to content
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
31 changes: 24 additions & 7 deletions www/components/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
import Image from "next/image";
import Link from "next/link";
import { DEVB_BUY_ME_A_COFFEE_LINK, DEVB_GITHUB_LINK } from "@/lib/constants";
import {
DEVB_BUY_ME_A_COFFEE_LINK,
DEVB_DISCORD_LINK,
DEVB_GITHUB_LINK,
DEVB_INSTAGRAM_LINK,
DEVB_LINKEDIN_LINK,
DEVB_X_LINK,
} from "@/lib/constants";

const Footer = () => {
return (
Expand Down Expand Up @@ -31,14 +38,24 @@ const Footer = () => {
<div>
<h3 className="text-lg font-medium mb-4">Quick Links</h3>
<ul className="space-y-2">
<li>
<Link
href={DEVB_DISCORD_LINK}
target="_blank"
rel="noopener noreferrer"
className="text-[#F3F3F3] opacity-60 hover:opacity-100 text-sm"
>
Join Discord
</Link>
</li>
<li>
<Link
href={DEVB_GITHUB_LINK}
target="_blank"
rel="noopener noreferrer"
className="text-[#F3F3F3] opacity-60 hover:opacity-100 text-sm"
>
Star us on Github
Star Us On GitHub
</Link>
</li>
<li>
Expand All @@ -48,7 +65,7 @@ const Footer = () => {
rel="noopener noreferrer"
className="text-[#F3F3F3] opacity-60 hover:opacity-100 text-sm"
>
Support us
Support Us
</Link>
</li>
</ul>
Expand All @@ -60,7 +77,7 @@ const Footer = () => {
<ul className="space-y-2">
<li>
<Link
href="https://x.com/devb_io"
href={DEVB_X_LINK}
target="_blank"
rel="noopener noreferrer"
className="text-[#F3F3F3] opacity-60 hover:opacity-100 text-sm"
Expand All @@ -70,7 +87,7 @@ const Footer = () => {
</li>
<li>
<Link
href="https://github.com/devb-io"
href={DEVB_GITHUB_LINK}
target="_blank"
rel="noopener noreferrer"
className="text-[#F3F3F3] opacity-60 hover:opacity-100 text-sm"
Expand All @@ -80,7 +97,7 @@ const Footer = () => {
</li>
<li>
<Link
href="https://instagram.com/devb_io"
href={DEVB_INSTAGRAM_LINK}
target="_blank"
rel="noopener noreferrer"
className="text-[#F3F3F3] opacity-60 hover:opacity-100 text-sm"
Expand All @@ -90,7 +107,7 @@ const Footer = () => {
</li>
<li>
<Link
href="https://linkedin.com/company/devb-io"
href={DEVB_LINKEDIN_LINK}
target="_blank"
rel="noopener noreferrer"
className="text-[#F3F3F3] opacity-60 hover:opacity-100 text-sm"
Expand Down
4 changes: 4 additions & 0 deletions www/lib/constants.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
export const DEVB_INVITE_LINK = "https://devb.io/?modal=true&ref=invite";
export const DEVB_GITHUB_LINK = "https://github.com/sunithvs/devb.io";
export const DEVB_BUY_ME_A_COFFEE_LINK = "https://buymeacoffee.com/sunithvs";
export const DEVB_DISCORD_LINK = "https://discord.gg/se8fhSWSw9";
export const DEVB_INSTAGRAM_LINK = "https://instagram.com/devb_io";
export const DEVB_LINKEDIN_LINK = "https://www.linkedin.com/company/devb-io";
export const DEVB_X_LINK = "https://x.com/devb_io";
Loading