diff options
Diffstat (limited to 'src/pages/portfolio.html')
| -rw-r--r-- | src/pages/portfolio.html | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/src/pages/portfolio.html b/src/pages/portfolio.html new file mode 100644 index 0000000..c6f24ea --- /dev/null +++ b/src/pages/portfolio.html @@ -0,0 +1,72 @@ +<!DOCTYPE html> +<html class="h-full" lang="ru"> + +<head> + <title>Портфолио mlibren</title> + <link rel="icon" href="/assets/icons/logo.svg" type="image/svg+xml"> + <!-- OG --> + <meta property="og:title" content="TODO" /> + <meta property="og:description" content="TODO" /> + <meta property="og:image" content="TODO" /> + <meta property="og:url" content="https://mnik01-blog.mlibren.com" /> + <meta property="og:type" content="website" /> + <!-- OG --> + <meta charset="UTF-8"> + + <link href="/main.css" rel="stylesheet"> + <meta name="viewport" content="width=device-width, initial-scale=1"> +</head> + +<body class="relative"> + <div class="fixed top-0 translate-x-12 translate-y-10 z-40 right-0"> + <span class="font-bold text-black rotate-45 w-[200px] text-center block bg-yellow-400">В разработке</span> + </div> + <!-- %include.header% --> + <main> + <div class="py-12 mx-auto container max-sm:px-5"> + <h1 class="text-2xl font-serif first-letter:capitalize">Портфолио</h1> + <h2>Мои работы</h2> + <ol> + <li class="border-b border-zinc-400 border-dashed"> + <article class="p-4"> + <h1 class="text-lg">Мой персональный веб-сайт</h1> + <p class="my-2">Мой личный персональный веб-сайт. Вы сейчас тут. Сделано с использованием HTML5, CSS3, TailwindCSS и моей <a href="http://git.mlibren.com/jelly-cms.git/">Jelly CMS</a>. Тут я размещаю публикации, храню информацию о своих ресурсах и сервисах (SMTP, XMPP и другие), а так же под этим общим доменом размещаю веб-сайты для знакомых.</p> + <a class="text-sm underline" href="https://mnik01-blog.mlibren.com/">https://mnik01-blog.mlibren.com/</a> + </article> + </li> + <li class="border-b border-zinc-400 border-dashed"> + <article class="p-4"> + <h1 class="text-lg">"Анна, хватит!" Персональный веб-сайт</h1> + <p class="my-2">todo</p> + <a class="text-sm underline" href="https://anna-hvatit.mlibren.com/">https://anna-hvatit.mlibren.com/</a> + </article> + </li> + <li class="border-b border-zinc-400 border-dashed"> + <article class="p-4"> + <h1 class="text-lg">Микро CMS -- JellyCMS</h1> + <p class="my-2">todo</p> + <a class="text-sm underline" href="http://git.mlibren.com/jelly-cms.git/">http://git.mlibren.com/jelly-cms.git/</a> + </article> + </li> + <li class="border-b border-zinc-400 border-dashed"> + <article class="p-4"> + <h1 class="text-lg">Веб-сайт для копи-центра "Цвет"</h1> + <p class="my-2">todo</p> + <a class="text-sm underline" href="https://cvet.vercel.app/">https://cvet.vercel.app/</a> + </article> + </li> + <li class="border-b border-zinc-400 border-dashed"> + <article class="p-4"> + <h1 class="text-lg">Демо подхода Optimistic UI для корзины товаров на сайт technodom.kz</h1> + <p class="my-2">todo</p> + <a class="text-sm underline" href="https://optimistic-eight.vercel.app/">https://optimistic-eight.vercel.app/</a> + </article> + </li> + </ol> + </div> + <!-- %include.common-section% --> + </main> + <!-- %include.footer% --> +</body> + +</html>
\ No newline at end of file |
