Skip to content

Commit

Permalink
update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
kalidiagne committed May 21, 2024
1 parent 0b8cae9 commit 1550c10
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions app/faq/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
5 changes: 5 additions & 0 deletions app/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/AppHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 1550c10

Please sign in to comment.