mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-11 00:32:38 +02:00
feat(navbar,readme): add Reddit link
This commit is contained in:
parent
943b5d9aed
commit
9a84f6c8a7
3 changed files with 23 additions and 1 deletions
|
|
@ -6,6 +6,9 @@
|
||||||
<a href="https://discord.gg/ejRNvftDp9">
|
<a href="https://discord.gg/ejRNvftDp9">
|
||||||
<img src="https://img.shields.io/discord/1359368468260192417" alt="Discord">
|
<img src="https://img.shields.io/discord/1359368468260192417" alt="Discord">
|
||||||
</a>
|
</a>
|
||||||
|
<a href="https://www.reddit.com/r/SurfSense/">
|
||||||
|
<img src="https://img.shields.io/reddit/subreddit-subscribers/SurfSense?style=social" alt="Reddit">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,9 @@
|
||||||
<a href="https://discord.gg/ejRNvftDp9">
|
<a href="https://discord.gg/ejRNvftDp9">
|
||||||
<img src="https://img.shields.io/discord/1359368468260192417" alt="Discord">
|
<img src="https://img.shields.io/discord/1359368468260192417" alt="Discord">
|
||||||
</a>
|
</a>
|
||||||
|
<a href="https://www.reddit.com/r/SurfSense/">
|
||||||
|
<img src="https://img.shields.io/reddit/subreddit-subscribers/SurfSense?style=social" alt="Reddit">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
"use client";
|
"use client";
|
||||||
import { IconBrandDiscord, IconBrandGithub, IconMenu2, IconX } from "@tabler/icons-react";
|
import { IconBrandDiscord, IconBrandGithub, IconBrandReddit, IconMenu2, IconX } from "@tabler/icons-react";
|
||||||
import { AnimatePresence, motion } from "motion/react";
|
import { AnimatePresence, motion } from "motion/react";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
|
|
@ -153,6 +153,14 @@ const DesktopNav = ({ navItems, isScrolled }: any) => {
|
||||||
>
|
>
|
||||||
<IconBrandDiscord className="h-5 w-5 text-neutral-600 dark:text-neutral-300" />
|
<IconBrandDiscord className="h-5 w-5 text-neutral-600 dark:text-neutral-300" />
|
||||||
</Link>
|
</Link>
|
||||||
|
<Link
|
||||||
|
href="https://www.reddit.com/r/SurfSense/"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="hidden rounded-full p-2 hover:bg-gray-100 dark:hover:bg-neutral-800 transition-colors md:flex items-center justify-center"
|
||||||
|
>
|
||||||
|
<IconBrandReddit className="h-5 w-5 text-neutral-600 dark:text-neutral-300" />
|
||||||
|
</Link>
|
||||||
<Link
|
<Link
|
||||||
href="https://github.com/MODSetter/SurfSense"
|
href="https://github.com/MODSetter/SurfSense"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|
@ -236,6 +244,14 @@ const MobileNav = ({ navItems, isScrolled }: any) => {
|
||||||
>
|
>
|
||||||
<IconBrandDiscord className="h-5 w-5 text-neutral-600 dark:text-neutral-300" />
|
<IconBrandDiscord className="h-5 w-5 text-neutral-600 dark:text-neutral-300" />
|
||||||
</Link>
|
</Link>
|
||||||
|
<Link
|
||||||
|
href="https://www.reddit.com/r/SurfSense/"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="flex items-center justify-center rounded-lg p-2 hover:bg-gray-100 dark:hover:bg-neutral-800 transition-colors touch-manipulation"
|
||||||
|
>
|
||||||
|
<IconBrandReddit className="h-5 w-5 text-neutral-600 dark:text-neutral-300" />
|
||||||
|
</Link>
|
||||||
<Link
|
<Link
|
||||||
href="https://github.com/MODSetter/SurfSense"
|
href="https://github.com/MODSetter/SurfSense"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue