feat: add Reddit link to community strip and footer

- Integrated Reddit link into the CommunityStrip component for enhanced community engagement.
- Updated the FooterNew component to include a Reddit section with the corresponding icon.
- Modified JSON-LD structured data to include the Reddit URL for improved SEO and social media presence.
This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-07-05 21:57:39 -07:00
parent a7c3b2ae63
commit 4739cadc7e
3 changed files with 20 additions and 2 deletions

View file

@ -1,4 +1,4 @@
import { IconBrandDiscord, IconBrandGithub } from "@tabler/icons-react";
import { IconBrandDiscord, IconBrandGithub, IconBrandReddit } from "@tabler/icons-react";
import { ArrowRight } from "lucide-react";
import Link from "next/link";
import { Reveal } from "@/components/connectors-marketing/reveal";
@ -7,6 +7,7 @@ import { Button } from "@/components/ui/button";
const GITHUB_URL = "https://github.com/MODSetter/SurfSense";
const DISCORD_URL = "https://discord.gg/ejRNvftDp9";
const REDDIT_URL = "https://www.reddit.com/r/SurfSense/";
/** Closing CTA doubling as the GitHub/community strip (brief section 7). */
export function CommunityStrip() {
@ -40,6 +41,12 @@ export function CommunityStrip() {
Join Discord
</Link>
</Button>
<Button asChild variant="ghost" size="lg">
<Link href={REDDIT_URL} target="_blank" rel="noopener noreferrer">
<IconBrandReddit className="size-4" />
r/SurfSense
</Link>
</Button>
</div>
</div>
</Reveal>

View file

@ -2,6 +2,7 @@ import {
IconBrandDiscord,
IconBrandGithub,
IconBrandLinkedin,
IconBrandReddit,
IconBrandTwitter,
} from "@tabler/icons-react";
import Link from "next/link";
@ -68,6 +69,11 @@ export function FooterNew() {
href: "https://discord.gg/ejRNvftDp9",
icon: IconBrandDiscord,
},
{
title: "Reddit",
href: "https://www.reddit.com/r/SurfSense/",
icon: IconBrandReddit,
},
];
const legals = [
{

View file

@ -20,7 +20,12 @@ export function OrganizationJsonLd() {
logo: "https://www.surfsense.com/logo.png",
description:
"SurfSense is an open-source competitive intelligence platform. AI agents monitor competitors, track rankings, and listen to your market through one API or MCP server.",
sameAs: ["https://github.com/MODSetter/SurfSense", "https://discord.gg/ejRNvftDp9"],
sameAs: [
"https://github.com/MODSetter/SurfSense",
"https://discord.gg/ejRNvftDp9",
"https://www.reddit.com/r/SurfSense/",
"https://www.linkedin.com/company/surfsense/",
],
contactPoint: {
"@type": "ContactPoint",
email: "rohan@surfsense.com",