/** * WorthDoing.ai * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * File: src/app/layout.tsx * Description: Root layout — fonts (Fraunces display, Instrument Sans body, IBM Plex Mono telemetry), site chrome. */ import type { Metadata } from "next"; import { Fraunces, Instrument_Sans, IBM_Plex_Mono } from "next/font/google"; import Link from "next/link"; import "./globals.css"; const display = Fraunces({ variable: "--font-display", subsets: ["latin"], axes: ["opsz", "SOFT", "WONK"], }); const body = Instrument_Sans({ variable: "--font-body", subsets: ["latin"], }); const tele = IBM_Plex_Mono({ variable: "--font-tele", subsets: ["latin"], weight: ["400", "500"], }); export const metadata: Metadata = { title: "WorthDoing.ai — find what should exist", description: "An autonomous investigation agent that discovers, challenges, and ranks things genuinely worth doing. Google finds what exists. WorthDoing finds what should.", metadataBase: new URL(process.env.PUBLIC_BASE_URL ?? "https://www.worthdoing.ai"), }; export default function RootLayout({ children }: LayoutProps<"/">) { return (
{/* eslint-disable-next-line @next/next/no-img-element */} WorthDoing .ai
{children}
); }