update styles

This commit is contained in:
Kalidou Diagne
2024-05-21 18:39:59 +09:00
parent 0b8cae957f
commit 1550c10f63
3 changed files with 9 additions and 1 deletions

View File

@@ -24,6 +24,9 @@ export default function FAQPage() {
/>
),
strong: ({ ...props }) => <span className="font-bold" {...props} />,
a: ({ ...props }) => (
<a className="font-semibold underline" target="_blank" rel="noopener noreferrer" {...props} />
),
}}
>
{answer}

View File

@@ -27,6 +27,11 @@ export const NAVIGATION: NavItem[] = [
label: "FAQ",
href: "/faq",
},
{
label: "API",
href: "https://tlsnotary.github.io/tlsn/",
external: true,
},
{
label: "Documentation",
href: LINKS.DOCUMENTATION,

View File

@@ -3,7 +3,7 @@
import Link from "next/link";
import { AppContainer } from "./AppContainer";
import { Icons } from "./Icons";
import { LINKS, NAVIGATION, SOCIALS_HEADER } from "../app/settings";
import { NAVIGATION, SOCIALS_HEADER } from "../app/settings";
import { classed } from "@tw-classed/react";
import { usePathname } from "next/navigation";
import { useState } from "react";