-
-
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.
- Loading branch information
Evangelos Vatikiotis
committed
Jul 1, 2024
1 parent
4531b43
commit 93cb296
Showing
6 changed files
with
37 additions
and
5 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
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,20 @@ | ||
### **Streamline Your Software Engineering Interview Preparation with InterviewRunbook.com** | ||
|
||
Preparing for software engineering jobs is a challenging and often overwhelming process that engineers may face multiple | ||
times throughout their careers. To support and simplify this journey, InterviewRunbook.com offers a comprehensive | ||
platform designed to help engineers systematically document their progress and experiences. | ||
|
||
Our platform features articles written by seasoned professionals, utilizing Markdown files to create high-quality | ||
content. This not only ensures consistency and readability but also enables the material to be easily hosted on GitHub | ||
for free, providing a valuable resource accessible to everyone. | ||
|
||
**Why Choose InterviewRunbook.com?** | ||
|
||
- **Structured Progress Tracking:** Easily document your interview preparation journey, from studying algorithms to | ||
practicing coding problems, all in a structured and organized manner. | ||
- **Community-Generated Content:** Benefit from articles and tutorials created by experienced software engineers who | ||
have navigated the interview process successfully. | ||
- **Open Source and Free:** All content is hosted on GitHub, making it freely available to the community. Contribute | ||
your own experiences and learn from others. | ||
- **Markdown Simplicity:** Using Markdown files ensures your notes and articles are easy to write, maintain, and read, | ||
allowing you |
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 |
---|---|---|
@@ -1,3 +1,14 @@ | ||
export default function Home() { | ||
return <h1>Home page</h1>; | ||
import Markdown from 'react-markdown' | ||
import { promises as fs } from 'fs'; | ||
|
||
export default function Home(props:any) { | ||
return <Markdown>{props.article}</Markdown> | ||
} | ||
|
||
|
||
export async function getStaticProps({params}:{params:any}) { | ||
const article = await fs.readFile("./src/markdown-pages/home.md", "utf8"); | ||
console.log(article) | ||
return {props: {article}}; | ||
|
||
} |