-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: update aboutme * chore: lint and typo * chore : lint * chore: remove music icon * chore :lint
- Loading branch information
1 parent
ec97c56
commit 98dfd53
Showing
6 changed files
with
60 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import React from "react"; | ||
|
||
export default function Page() { | ||
return ( | ||
<div className="h-screen w-full prose flex flex-col justify-center items-center font-serif"> | ||
<h1>Music List</h1> | ||
<h1>Movie List</h1> | ||
</div> | ||
); | ||
} |
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,9 @@ | ||
import React from "react"; | ||
|
||
export default function Page() { | ||
return ( | ||
<div className="h-screen w-full prose flex flex-col justify-center items-center font-serif"> | ||
<h1>Music</h1> | ||
</div> | ||
); | ||
} |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// Environment: Node.js | ||
import { OpenSourceProjects, Works } from "@/config/project"; | ||
import { SideProjects, Works } from "@/config/project"; | ||
export { onBeforePrerenderStart }; | ||
async function onBeforePrerenderStart() { | ||
const lists = [...OpenSourceProjects, ...Works]; | ||
const lists = [...SideProjects, ...Works]; | ||
return lists.map((list) => list.href); | ||
} |