"use client"; import { IconBrandDiscord, IconBrandGithub, IconBrandLinkedin, IconBrandTwitter, } from "@tabler/icons-react"; import Link from "next/link"; import type React from "react"; import { cn } from "@/lib/utils"; export function Footer() { const pages = [ { title: "Privacy", href: "/privacy", }, { title: "Terms", href: "/terms", }, ]; return (
SurfSense
    {pages.map((page) => (
  • {page.title}
  • ))}

© SurfSense 2025

); } const GridLineHorizontal = ({ className, offset }: { className?: string; offset?: string }) => { return (
); };