mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-10-28 16:55:50 -04:00
update component prop types to use JSX.IntrinsicElements
This commit is contained in:
@@ -17,7 +17,7 @@ export const getServerSideProps: GetServerSideProps = async (context) => {
|
||||
// TODO: make this not manual (serverless functions can't see /pages at runtime)
|
||||
const pages: Page[] = [
|
||||
{ relUrl: "/", priority: 1.0, changeFreq: "weekly" }, // homepage
|
||||
{ relUrl: "/notes/" },
|
||||
{ relUrl: "/notes/", changeFreq: "weekly" },
|
||||
{ relUrl: "/birthday/" },
|
||||
{ relUrl: "/cli/" },
|
||||
{ relUrl: "/contact/" },
|
||||
@@ -28,6 +28,7 @@ export const getServerSideProps: GetServerSideProps = async (context) => {
|
||||
{ relUrl: "/privacy/", priority: 0.1, changeFreq: "yearly" },
|
||||
{ relUrl: "/projects/", changeFreq: "daily" },
|
||||
{ relUrl: "/uses/" },
|
||||
{ relUrl: "/y2k/" },
|
||||
];
|
||||
|
||||
// push notes separately and use their metadata
|
||||
|
||||
Reference in New Issue
Block a user