diff --git a/website/src/components/Footer.tsx b/website/src/components/Footer.tsx index b9e9ddba..aed07bcb 100644 --- a/website/src/components/Footer.tsx +++ b/website/src/components/Footer.tsx @@ -1,135 +1,55 @@ "use client"; -import { motion } from "framer-motion"; - -const footer = { - products: [ - { name: "Actors", href: "https://rivet.dev/docs/actors" }, - { name: "Secure Exec", href: "/docs" }, - ], - developers: [ - { name: "Documentation", href: "/docs" }, - { name: "Changelog", href: "https://github.com/rivet-dev/secure-exec/releases" }, - { name: "Blog", href: "https://www.rivet.dev/blog/" }, - ], - legal: [ - { name: "Terms", href: "https://rivet.dev/terms" }, - { name: "Privacy Policy", href: "https://rivet.dev/privacy" }, - { name: "Acceptable Use", href: "https://rivet.dev/acceptable-use" }, - ], - social: [ - { - name: "Discord", - href: "https://rivet.dev/discord", - icon: ( - - - - ), - }, - { - name: "GitHub", - href: "https://github.com/rivet-dev/secure-exec", - icon: ( - - - - ), - }, - { - name: "Twitter", - href: "https://x.com/rivet_dev", - icon: ( - - - - ), - }, - ], -}; +// Basic Secure Exec footer (dark chrome). Replaces the previously rivet-branded +// footer — uses Secure Exec's own logo, tagline, and links. +const links = [ + { name: "Documentation", href: "/docs" }, + { name: "Changelog", href: "https://github.com/rivet-dev/secure-exec/releases" }, + { name: "GitHub", href: "https://github.com/rivet-dev/secure-exec" }, + { name: "Discord", href: "https://rivet.dev/discord" }, +]; export function Footer() { return ( );