update
This commit is contained in:
parent
403567c195
commit
5c9ba65d89
3 changed files with 77 additions and 0 deletions
|
@ -32,6 +32,7 @@ SunLight
|
|||
<div class="mobile-popup-menu">
|
||||
<a class="header-link-item" href="/blog/">Blog</a>
|
||||
<a class="header-link-item" href="https://ark.sudovanilla.org/">Ark</a>
|
||||
<a class="header-link-item" href="/roadmap/">Road Map</a>
|
||||
<a class="header-link-item" href="/instances/">Instances</a>
|
||||
<a class="header-link-item" href="/docs/">Docs</a>
|
||||
<a class="header-link-item" href="/init/">Init Privacy</a>
|
||||
|
@ -52,6 +53,7 @@ SunLight
|
|||
<div>
|
||||
<a class="header-link-item" href="/blog/">Blog</a>
|
||||
<a class="header-link-item" href="https://ark.sudovanilla.org/">Ark</a>
|
||||
<a class="header-link-item" href="/roadmap/">Road Map</a>
|
||||
<a class="header-link-item" href="/instances/">Instances</a>
|
||||
<a class="header-link-item" href="/docs/">Docs</a>
|
||||
<a class="header-link-item" href="/init/">Init Privacy</a>
|
||||
|
|
48
src/layouts/Markdown.astro
Normal file
48
src/layouts/Markdown.astro
Normal file
|
@ -0,0 +1,48 @@
|
|||
---
|
||||
// Properties
|
||||
const { frontmatter } = Astro.props
|
||||
|
||||
/// Global
|
||||
import Head from "@components/global/Head.astro"
|
||||
import Header from "@components/global/Header.astro"
|
||||
import Footer from '@components/global/Footer.astro'
|
||||
|
||||
// Styles
|
||||
import "@styles/index.scss"
|
||||
import { fade } from "astro:transitions"
|
||||
|
||||
// Other
|
||||
if (Astro.url.pathname === '/roadmap/') {
|
||||
var CenterIt = true
|
||||
}
|
||||
---
|
||||
|
||||
<Head />
|
||||
<Header transition:persist MobileTitle={frontmatter.title} NoSubHeader={true}>
|
||||
<slot name="sub-header" />
|
||||
</Header>
|
||||
<div class="page-content">
|
||||
<slot />
|
||||
<Footer/>
|
||||
</div>
|
||||
|
||||
<noscript>
|
||||
<style is:global>
|
||||
.with-js {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
</noscript>
|
||||
|
||||
|
||||
|
||||
{CenterIt ?
|
||||
<style>
|
||||
.page-content {
|
||||
width: 500px;
|
||||
margin: 70px auto auto auto;
|
||||
}
|
||||
</style>
|
||||
:
|
||||
null
|
||||
}
|
27
src/pages/roadmap.mdx
Normal file
27
src/pages/roadmap.mdx
Normal file
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
layout: '@layouts/Markdown.astro'
|
||||
title: Roadmap
|
||||
---
|
||||
|
||||
import Heading from '@components/Heading.astro'
|
||||
import {MapsArrowDiagonal} from '@iconoir/vue'
|
||||
|
||||
<Heading Title="Roadmap" Description="The Future of SudoVanilla"><slot slot="icon"><MapsArrowDiagonal/></slot></Heading>
|
||||
|
||||
## 2024
|
||||
- ~~Transfer to sudovanilla.org~~ (Completed)
|
||||
- ~~Pause or stop all desktop development~~ (Completed)
|
||||
- Switch to Caddy
|
||||
- Switch to seelf(from Dockge)
|
||||
|
||||
## 2025
|
||||
- ~~Launch Mastodon instance~~ (Completed ahead of time)
|
||||
- Launch MinPluto Beta
|
||||
- Launch Matrix instance
|
||||
- Launch Forums
|
||||
- Add SSO (For all services on SudoVanilla)
|
||||
- Learn Tauri? Learn some Rust?
|
||||
- Continue desktop development
|
||||
|
||||
## 2026
|
||||
- Launch Minecraft Server (Help wanted?)
|
Loading…
Reference in a new issue