You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
491 B
23 lines
491 B
import type {NextPageWithLayout} from "./_app"
|
|
import type { ReactElement } from "react"
|
|
import Layout from "../components/layout"
|
|
import { Section } from "./index"
|
|
// import Link from "next/link"
|
|
// import RepoCard from "components/repoCard";
|
|
|
|
const Page: NextPageWithLayout = () => {
|
|
return (
|
|
<>
|
|
<Section>
|
|
<h2>Pinned GitHub Repos</h2>
|
|
<div>
|
|
</div>
|
|
</Section>
|
|
</>
|
|
)
|
|
}
|
|
|
|
Page.getLayout = (page: ReactElement) => {
|
|
return <Layout>{page}</Layout>
|
|
}
|
|
export default Page
|
|
|