"use client"; import { cn } from "@/lib/utils"; import { IconArrowRight, IconBrandGithub } 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 (
SurfSense v0.0.6 Released {/* 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, Notion, and more.

Get Started 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 (
); };