diff --git a/README.md b/README.md
index 5af161d..a051e56 100644
--- a/README.md
+++ b/README.md
@@ -71,8 +71,6 @@ The canonical production endpoints are [lamplitlabs.com](https://lamplitlabs.com
- [GitHub](https://github.com/lamplitlabs)
- [LinkedIn](https://www.linkedin.com/company/lamplitlabs)
- [Instagram](https://www.instagram.com/lamplitlabs)
-- [Mastodon](https://me.dm/@lamplitlabs)
-- [Threads](https://www.threads.net/@lamplitlabs)
- [Blog](https://blogs.lamplitlabs.com)
## License
diff --git a/app/layout.tsx b/app/layout.tsx
index 6df35cd..2453218 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -118,8 +118,6 @@ const organizationJsonLd = {
socialLinks.github,
socialLinks.instagram,
socialLinks.linkedin,
- socialLinks.mastodon,
- socialLinks.threads,
socialLinks.blog,
].filter(Boolean),
contactPoint: {
diff --git a/components/home/footer.tsx b/components/home/footer.tsx
index 1aef879..e192440 100644
--- a/components/home/footer.tsx
+++ b/components/home/footer.tsx
@@ -1,6 +1,5 @@
import { Github, Instagram, Linkedin } from "lucide-react";
import type { ComponentType } from "react";
-import { MastodonIcon, ThreadsIcon } from "@/components/icons";
import { OutboundLink } from "@/components/outbound-link";
import { navLinks, products, socialLinks } from "@/lib/site-data";
import { Logo } from "@/components/logo";
@@ -13,8 +12,6 @@ const footerSocialLinks: {
{ href: socialLinks.github, icon: Github, label: "GitHub" },
{ href: socialLinks.linkedin, icon: Linkedin, label: "LinkedIn" },
{ href: socialLinks.instagram, icon: Instagram, label: "Instagram" },
- { href: socialLinks.mastodon, icon: MastodonIcon, label: "Mastodon" },
- { href: socialLinks.threads, icon: ThreadsIcon, label: "Threads" },
].flatMap((item) => (item.href ? [{ ...item, href: item.href }] : []));
export function Footer() {
diff --git a/components/icons.tsx b/components/icons.tsx
deleted file mode 100644
index c80c298..0000000
--- a/components/icons.tsx
+++ /dev/null
@@ -1,25 +0,0 @@
-export function MastodonIcon({ className }: { className?: string }) {
- return (
-
- );
-}
-
-export function ThreadsIcon({ className }: { className?: string }) {
- return (
-
- );
-}
diff --git a/components/social-bar.tsx b/components/social-bar.tsx
index b6c1e45..07dcefc 100644
--- a/components/social-bar.tsx
+++ b/components/social-bar.tsx
@@ -7,7 +7,6 @@ import {
Twitter,
ExternalLink,
} from "lucide-react";
-import { MastodonIcon, ThreadsIcon } from "@/components/icons";
import { Button } from "@/components/ui/button";
import { OutboundLink } from "@/components/outbound-link";
import type { SocialLinks } from "@/lib/site-data";
@@ -19,8 +18,6 @@ const socialIconMap: Record = {
youtube: Youtube,
twitter: Twitter,
blog: BookOpen,
- mastodon: MastodonIcon,
- threads: ThreadsIcon,
};
interface SocialBarProps {
diff --git a/lib/site-data.ts b/lib/site-data.ts
index 469f759..2b8cb43 100644
--- a/lib/site-data.ts
+++ b/lib/site-data.ts
@@ -31,8 +31,6 @@ export interface SocialLinks {
twitter?: string;
blog?: string;
web?: string;
- mastodon?: string;
- threads?: string;
}
export const socialLinks: SocialLinks = {
@@ -40,8 +38,6 @@ export const socialLinks: SocialLinks = {
linkedin: "https://www.linkedin.com/company/lamplitlabs",
github: "https://github.com/lamplitlabs",
blog: "https://blogs.lamplitlabs.com",
- mastodon: "https://me.dm/@lamplitlabs",
- threads: "https://www.threads.net/@lamplitlabs",
};
export const products: Product[] = [