diff --git a/README.md b/README.md index bc34342..3798357 100644 --- a/README.md +++ b/README.md @@ -1,3 +1 @@ -Personal website powered by [Deno Blog](https://deno.land/x/blog). - > https://machnevegor.com diff --git a/deno.jsonc b/deno.jsonc deleted file mode 100644 index 33797ed..0000000 --- a/deno.jsonc +++ /dev/null @@ -1,6 +0,0 @@ -{ - "tasks": { - "dev": "deno run --allow-net --allow-read --allow-env --watch main.ts --dev", - "serve": "deno run --allow-net --allow-read --allow-env --no-check main.ts" - } -} diff --git a/main.ts b/main.ts deleted file mode 100644 index 6ed7e02..0000000 --- a/main.ts +++ /dev/null @@ -1,13 +0,0 @@ -import blog from "https://deno.land/x/blog@0.4.2/blog.tsx"; - -blog({ - title: "Egor Machnev", - description: "machnevegor", - avatar: "./assets/icon.png", - author: "Egor Machnev", - links: [ - { title: "Email", url: "mailto:egorikhelp@gmail.com" }, - { title: "GitHub", url: "https://github.com/machnevegor" }, - ], - favicon: "./assets/logo.svg", -}); diff --git a/mod.ts b/mod.ts new file mode 100644 index 0000000..9067a3a --- /dev/null +++ b/mod.ts @@ -0,0 +1,3 @@ +import { serve } from "https://deno.land/std@0.178.0/http/mod.ts"; + +serve(() => Response.redirect("https://t.me/machnevegor")); diff --git a/posts/welcome.md b/posts/welcome.md deleted file mode 100644 index f8da87f..0000000 --- a/posts/welcome.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: welcome -publish_date: 2022-08-06 ---- - -hi! my name is Egor and I'm 17. I love coding, so check out -[github](https://github.com/machnevegor).