"use client"; import { cn } from "@/lib/utils"; import { IconFileTypeDoc, IconBrandGithub, IconBrandDiscord } from "@tabler/icons-react"; import Link from "next/link"; import React from "react"; import { motion } from "framer-motion"; import { Logo } from "./Logo"; export function ModernHeroWithGradients() { return (
Documentation {/* Import the Logo component or define it in this file */}

SurfSense

A Customizable AI Research Agent just like NotebookLM or Perplexity, but connected to external sources such as search engines (Tavily), Slack, Linear, Notion, YouTube, GitHub and more.

Discord GitHub
); } const TopLines = () => { return ( ); }; const BottomLines = () => { return ( ); }; const SideLines = () => { return ( ); }; const BottomGradient = ({ className }: { className?: string }) => { return ( ); }; const TopGradient = ({ className }: { className?: string }) => { return ( ); }; const DarkModeGradient = ({ className }: { className?: string } = {}) => { return (
); };