File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ export const metadata: Metadata = {
2121 title : "Harness Engineering Guide" ,
2222 description :
2323 "The open guide to building AI agent runtimes. From core concepts to production patterns." ,
24+ icons : {
25+ icon : "/favicon.svg" ,
26+ } ,
2427} ;
2528
2629export default function RootLayout ( {
Original file line number Diff line number Diff line change 11"use client" ;
22
33import Link from "next/link" ;
4+ import Image from "next/image" ;
45import { usePathname } from "next/navigation" ;
56import { useState } from "react" ;
67import ThemeToggle from "./ThemeToggle" ;
@@ -65,9 +66,10 @@ export default function Navigation() {
6566 < div className = "flex h-14 items-center justify-between" >
6667 < Link
6768 href = { isZh ? "/zh" : "/" }
68- className = "font-[family-name:var(--font-heading)] text-lg font-bold text-[var(--color-text-primary)] hover:text-[var(--color-accent-cyan)] transition-colors"
69+ className = "flex items-center gap-2 font-[family-name:var(--font-heading)] text-lg font-bold text-[var(--color-text-primary)] hover:text-[var(--color-accent-cyan)] transition-colors"
6970 >
70- { isZh ? "⚡ Harness Engineering Guide" : "⚡ Harness Guide" }
71+ < Image src = "/logo.svg" alt = "Harness Guide" width = { 28 } height = { 28 } className = "inline-block" />
72+ < span > { isZh ? "Harness Engineering Guide" : "Harness Guide" } </ span >
7173 </ Link >
7274
7375 { /* Desktop nav */ }
You can’t perform that action at this time.
0 commit comments