add FAQ schema to homepage
- SHA
f7cba1fa0d090e2bd6a81be3440902c226801394- Parents
-
aec8a56 - Tree
f2d5d98
f7cba1f
f7cba1fa0d090e2bd6a81be3440902c226801394aec8a56
f2d5d98| Status | File | + | - |
|---|---|---|---|
| M |
src/app/page.tsx
|
3 | 0 |
src/app/page.tsxmodified@@ -2,6 +2,7 @@ import type { Metadata } from "next"; | ||
| 2 | 2 | import Link from "next/link"; |
| 3 | 3 | import Terminal from "@/components/Terminal"; |
| 4 | 4 | import ComparisonTable from "@/components/ComparisonTable"; |
| 5 | +import FaqSchema from "@/components/FaqSchema"; | |
| 5 | 6 | |
| 6 | 7 | export const metadata: Metadata = { |
| 7 | 8 | title: "tarmac — tiling window manager for macOS", |
@@ -279,6 +280,8 @@ export default function Home() { | ||
| 279 | 280 | </div> |
| 280 | 281 | </section> |
| 281 | 282 | |
| 283 | + <FaqSchema /> | |
| 284 | + | |
| 282 | 285 | {/* Footer */} |
| 283 | 286 | <footer className="border-t border-surface-200 dark:border-surface-800 bg-white/80 dark:bg-surface-950/80 backdrop-blur-md"> |
| 284 | 287 | <div className="max-w-6xl mx-auto px-6 py-8 flex items-center justify-between text-sm text-surface-500"> |