"use client"; import { motion } from "motion/react"; import Link from "next/link"; import { useEffect, useState } from "react"; import { RiGithubLine, RiTwitterXLine } from "react-icons/ri"; import { getStars } from "@/lib/fetch-github-stars"; import Image from "next/image"; export function Footer() { const [star, setStar] = useState(); useEffect(() => { const fetchStars = async () => { try { const data = await getStars(); setStar(data); } catch (err) { console.error("Failed to fetch GitHub stars", err); } }; fetchStars(); }, []); return (
{/* Brand Section */}
OpenCut OpenCut

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

Resources

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

Company

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