"use client"; import { motion } from "motion/react"; import Link from "next/link"; import { RiDiscordFill, RiTwitterXLine } from "react-icons/ri"; import { FaGithub } from "react-icons/fa6"; import Image from "next/image"; /** * Renders the site footer containing the brand, social icons, and navigational links. * * The footer animates its opacity from 0 to 1 on mount. External links open in a new tab with rel="noopener noreferrer". * * @returns The footer React element */ export function Footer() { return (
{/* Brand Section */}
OpenCut OpenCut

The open source video editor that gets the job done. Simple, powerful, and works on any platform.

Resources

  • Roadmap
  • Privacy policy
  • Terms of use
{/* Company Links */}

Company

  • Contributors
  • About
{/* Bottom Section */}
© 2025 OpenCut, All Rights Reserved
); }