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 {
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
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 */}