Streamline import orders in MDX components and layout files. Adjust text formatting in the homepage and configuration files for consistent structure and enhanced clarity. Add new accessibility-focused linting rules in `biome.json`.
33 lines
636 B
TypeScript
33 lines
636 B
TypeScript
import { Image } from "fumadocs-core/framework";
|
|
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
|
|
|
|
export function baseOptions(): BaseLayoutProps {
|
|
return {
|
|
nav: {
|
|
title: (
|
|
<span className="flex items-center gap-2 font-bold text-xl">
|
|
<Image
|
|
src="/memegoat-color.svg"
|
|
alt="Memegoat Logo"
|
|
width={64}
|
|
height={64}
|
|
className="w-8 h-8"
|
|
/>
|
|
<span>Memegoat</span>
|
|
</span>
|
|
),
|
|
},
|
|
links: [
|
|
{
|
|
text: "Documentation",
|
|
url: "/docs",
|
|
active: "nested-url",
|
|
},
|
|
{
|
|
text: "GitHub",
|
|
url: "https://git.yidhra.fr/Mathis/memegoat",
|
|
},
|
|
],
|
|
};
|
|
}
|