forked from Scaffold-Stark/scaffold-stark-2
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main'
- Loading branch information
Showing
12 changed files
with
964 additions
and
31 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,32 @@ | ||
"use client"; | ||
|
||
import React, { useEffect, useState } from "react"; | ||
import ReactMarkdown from "react-markdown"; | ||
import { useParams } from "next/navigation"; | ||
|
||
const PageView: React.FC = () => { | ||
const { id } = useParams(); | ||
|
||
const [markdown, setMarkdown] = useState<string>(); | ||
|
||
useEffect(() => { | ||
const getMarkdown = async () => { | ||
const response = await fetch( | ||
`https://raw.githubusercontent.com/Quantum3-Labs/speedrunstark/${id}/README.md`, | ||
); | ||
const markdownData = await response.text(); | ||
setMarkdown(markdownData); | ||
}; | ||
|
||
getMarkdown(); | ||
}, [id]); | ||
return ( | ||
<div className=" flex items-center w-full justify-center sm:text-[12px] "> | ||
<div className="max-w-[800px] py-20 sm:max-w-[400px] sm:py-5 sm:px-5 "> | ||
<ReactMarkdown>{markdown}</ReactMarkdown> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default PageView; |
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
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 |
---|---|---|
|
@@ -31,6 +31,7 @@ | |
"react-copy-to-clipboard": "^5.1.0", | ||
"react-dom": "^18", | ||
"react-hot-toast": "^2.4.1", | ||
"react-markdown": "^9.0.1", | ||
"starknet": "5.25.0", | ||
"starknet-dev": "npm:[email protected]", | ||
"type-fest": "^4.6.0", | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.