diff --git a/juntekim_frontend/app/Learning/Todo.md b/juntekim_frontend/app/Learning/Todo.md index a15365b..4af9c26 100644 --- a/juntekim_frontend/app/Learning/Todo.md +++ b/juntekim_frontend/app/Learning/Todo.md @@ -21,3 +21,4 @@ - Re read pragmatic automator - unix and linux system adminstration handbook - pandas text book i bought +- Home assistant docs on dashboard etc diff --git a/juntekim_frontend/app/Youtube/page.tsx b/juntekim_frontend/app/Youtube/page.tsx new file mode 100644 index 0000000..0dfd1eb --- /dev/null +++ b/juntekim_frontend/app/Youtube/page.tsx @@ -0,0 +1,14 @@ +import fs from "fs"; +import path from "path"; +import MarkdownRenderer from "../components/MardownRenderer"; + +export default function YoutubePage() { + const filePath = path.join(process.cwd(), "app/Youtube/todo.md"); + const markdown = fs.readFileSync(filePath, "utf8"); + + return ( +
+ +
+ ); +} diff --git a/juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/page.tsx b/juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/page.tsx new file mode 100644 index 0000000..1bbf3ca --- /dev/null +++ b/juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/page.tsx @@ -0,0 +1,14 @@ +import fs from "fs"; +import path from "path"; +import MarkdownRenderer from "../../components/MardownRenderer"; + +export default function YoutubePage() { + const filePath = path.join(process.cwd(), "app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/script.md"); + const markdown = fs.readFileSync(filePath, "utf8"); + + return ( +
+ +
+ ); +} \ No newline at end of file diff --git a/juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/script.md b/juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/script.md new file mode 100644 index 0000000..d083b89 --- /dev/null +++ b/juntekim_frontend/app/Youtube/robot_vaccume_only_starts_when_I_leave_the_house/script.md @@ -0,0 +1 @@ +A rought script please to make a youtube video... \ No newline at end of file diff --git a/juntekim_frontend/app/Youtube/todo.md b/juntekim_frontend/app/Youtube/todo.md new file mode 100644 index 0000000..979fa70 --- /dev/null +++ b/juntekim_frontend/app/Youtube/todo.md @@ -0,0 +1 @@ +- Make youtube video for s7 triggering when I leave the house \ No newline at end of file