-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: more conf 2025 resources (#1939)
* feat: more conf 2025 resources * update * add to nav * link * open external links in new tab * faq updates * venue updates * update faq
- Loading branch information
Showing
8 changed files
with
270 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
"use client" | ||
|
||
import Resources from "./resources.mdx" | ||
|
||
export default function ResourcesPage() { | ||
return ( | ||
<Resources | ||
components={{ | ||
// @ts-expect-error - not sure how to type this | ||
a: props => { | ||
const isExternal = props.href.startsWith("http") | ||
if (isExternal) { | ||
return <a {...props} target="_blank" rel="noopener noreferrer" /> | ||
} | ||
|
||
return <a {...props} /> | ||
}, | ||
}} | ||
/> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import Resources from "./client-mdx" | ||
|
||
import { clsx } from "clsx" | ||
import { Metadata } from "next" | ||
|
||
export const metadata: Metadata = { | ||
title: "Resources | 2025", | ||
} | ||
|
||
export default function ResourcesPage() { | ||
return ( | ||
<main> | ||
<div | ||
className={clsx( | ||
"container my-10 flex flex-col md:my-20", | ||
"prose max-w-screen-xl", | ||
"text-white prose-headings:text-white prose-a:text-white prose-strong:text-white", | ||
"prose-a:w-fit prose-a:transition-colors hover:prose-a:text-primary", | ||
)} | ||
> | ||
<Resources /> | ||
</div> | ||
</main> | ||
) | ||
} |
Oops, something went wrong.