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
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,6 @@ const organizationJsonLd = {
socialLinks.github,
socialLinks.instagram,
socialLinks.linkedin,
socialLinks.mastodon,
socialLinks.threads,
socialLinks.blog,
].filter(Boolean),
contactPoint: {
Expand Down
3 changes: 0 additions & 3 deletions components/home/footer.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand All @@ -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() {
Expand Down
25 changes: 0 additions & 25 deletions components/icons.tsx

This file was deleted.

3 changes: 0 additions & 3 deletions components/social-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -19,8 +18,6 @@ const socialIconMap: Record<string, React.ElementType> = {
youtube: Youtube,
twitter: Twitter,
blog: BookOpen,
mastodon: MastodonIcon,
threads: ThreadsIcon,
};

interface SocialBarProps {
Expand Down
4 changes: 0 additions & 4 deletions lib/site-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,13 @@ export interface SocialLinks {
twitter?: string;
blog?: string;
web?: string;
mastodon?: string;
threads?: string;
}

export const socialLinks: SocialLinks = {
instagram: "https://www.instagram.com/lamplitlabs",
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[] = [
Expand Down
Loading