From eb19c8e2a316e7103316d3a8a964a8762f05c610 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Mon, 9 Feb 2026 18:37:19 +0000 Subject: [PATCH] fix: update footer to match original cadcad.org content - Remove copyright and "All rights reserved" text - Add "Created by BlockScience" with proper description - Update Product links: Github, Video tutorials, Inspirational videos, List of related resources, Join our community - Update Community links: Discord, Discourse, Telegram, Twitter - Rename Resources to "Support us" with OpenCollective and ETH address - Remove unused Image import and BlockScience logo Co-Authored-By: Claude Opus 4.6 --- src/components/Footer.tsx | 108 ++++++++++++-------------------------- 1 file changed, 34 insertions(+), 74 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 043684b..4118975 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,27 +1,18 @@ -import Image from "next/image"; import CadCADLogo from "./CadCADLogo"; const productLinks = [ - { label: "GitHub", href: "https://github.com/cadCAD-org/cadCAD" }, - { label: "PyPI", href: "https://pypi.org/project/cadCAD/" }, - { label: "Documentation", href: "https://github.com/cadCAD-org/cadCAD" }, - { label: "Demos", href: "https://github.com/cadCAD-org/demos" }, - { label: "cadCAD.jl", href: "https://github.com/cadCAD-org/CadCAD.jl" }, + { label: "Github", href: "https://github.com/cadCAD-org/cadCAD" }, + { label: "Video tutorials", href: "https://www.youtube.com/playlist?list=PLmWm8ksQq4YKtdRV-SoinhV6LbQMgX1we" }, + { label: "Inspirational videos", href: "https://www.youtube.com/playlist?list=PLmWm8ksQq4YJnNDMaslh20axb4r7fgW_a" }, + { label: "List of related resources", href: "https://community.cadcad.org/" }, + { label: "Join our community", href: "https://community.cadcad.org/" }, ]; const communityLinks = [ { label: "Discord", href: "https://discord.gg/FP2FGJb4tJ" }, - { label: "Telegram", href: "https://t.me/joinchat/BehTglN4UOLe83MpgBelzw" }, { label: "Discourse", href: "https://community.cadcad.org/" }, + { label: "Telegram", href: "https://t.me/joinchat/BehTglN4UOLe83MpgBelzw" }, { label: "Twitter", href: "https://twitter.com/cadcad_org" }, - { label: "YouTube", href: "https://www.youtube.com/channel/UCPePNv3dJN--aKhFGOa0Rjg" }, -]; - -const resourceLinks = [ - { label: "Bootcamp", href: "https://www.cadcad.education/" }, - { label: "Tutorials", href: "https://www.youtube.com/playlist?list=PLmWm8ksQq4YKtdRV-SoinhV6LbQMgX1we" }, - { label: "Commons Simulator", href: "https://sim.commonsstack.org/" }, - { label: "OpenCollective", href: "https://opencollective.com/cadcad1" }, ]; export default function Footer() { @@ -29,32 +20,11 @@ export default function Footer() { );