From 7a62e1d23424865c45c5c60d791df4edcb63a67a Mon Sep 17 00:00:00 2001 From: guibibeau Date: Thu, 8 Jan 2026 22:55:03 +0700 Subject: [PATCH 1/3] Update footer resource links to Solana dev site --- apps/docs/components/landing/footer.tsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/apps/docs/components/landing/footer.tsx b/apps/docs/components/landing/footer.tsx index 70393c4..4123f24 100644 --- a/apps/docs/components/landing/footer.tsx +++ b/apps/docs/components/landing/footer.tsx @@ -35,13 +35,19 @@ export function Footer({ className }: { className?: string }) {
  • - - Blog + + Guides
  • - - Examples + + Templates
  • From bd5fe51adda850f1760e0a8299857aa2d8464c2c Mon Sep 17 00:00:00 2001 From: guibibeau Date: Thu, 8 Jan 2026 23:05:54 +0700 Subject: [PATCH 2/3] Set max-width for docs layout to improve sidebar alignment --- apps/docs/app/globals.css | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/docs/app/globals.css b/apps/docs/app/globals.css index 0c8a298..deb2aad 100644 --- a/apps/docs/app/globals.css +++ b/apps/docs/app/globals.css @@ -91,6 +91,7 @@ --color-fd-primary: #ff8c66; --color-fd-background: #fdfdfc; --color-fd-foreground: #171717; + --fd-layout-width: 1400px; } .dark { From d0621fafc536980864da3e2e0cc83fb098f3ffc2 Mon Sep 17 00:00:00 2001 From: guibibeau Date: Thu, 8 Jan 2026 23:07:52 +0700 Subject: [PATCH 3/3] Remove copy button from landing page code snippet --- apps/docs/components/landing/hero.tsx | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/apps/docs/components/landing/hero.tsx b/apps/docs/components/landing/hero.tsx index c97c98a..118c1f1 100644 --- a/apps/docs/components/landing/hero.tsx +++ b/apps/docs/components/landing/hero.tsx @@ -1,19 +1,10 @@ 'use client'; import { motion } from 'framer-motion'; -import { ArrowRight, Check, Copy } from 'lucide-react'; +import { ArrowRight } from 'lucide-react'; import Link from 'next/link'; -import { useState } from 'react'; export function Hero() { - const [copied, setCopied] = useState(false); - - const onCopy = () => { - navigator.clipboard.writeText('npm install @solana/client'); - setCopied(true); - setTimeout(() => setCopied(false), 2000); - }; - return (
    @@ -91,19 +82,7 @@ export function Hero() {
    examples/starter.ts
    -
    - -
    +
    {/* Code Content */}