update
continuous-integration/drone/push Build is passing Details

rabbit
Korbs 2023-08-12 04:04:24 -04:00
parent 938d7b5621
commit 30ba14685b
Signed by: Korbs
SSH Key Fingerprint: SHA256:TEBbhATU3FQEUOUBPvmNxuzw3QDSzMSp4jZzPaV29ss
10 changed files with 45 additions and 52 deletions

View File

@ -3,5 +3,4 @@
# To Do
- Create Help Center
- Merge Nexus Polestar Documentation
- Archive old blog posts from 2020/2021
- Create dropdown menus for header menu
- Archive old blog posts from 2020/2021

View File

@ -40,7 +40,6 @@ import SudoVanillaLogo from "../../assets/images/logos/sudovanilla/Logo.png"
<div>
<h2>Resources</h2>
<a href="/docs/">Documentations</a>
<a href="/help/">Help Center</a>
<a href="/newsroom/">Newsroom</a>
<a target="_blank" href="/code/">Code</a>
<a href="/projects/">Projects</a>

View File

@ -33,4 +33,6 @@ const { Title, Description, Keywords } = Astro.props
<!-- Scripts -->
<script src="https://kit.fontawesome.com/8c02e5f10f.js" crossorigin="anonymous"></script>
<script defer data-domain="sudovanilla.com" src="https://analytics.sudovanilla.com/js/script.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.7.0/cdn/themes/light.css" />
<script type="module" src="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.7.0/cdn/shoelace-autoloader.js"></script>
</head>

View File

@ -7,7 +7,7 @@ import SudoVanillaLogo from "../../assets/images/logos/sudovanilla/Logo.png"
<header>
<div class="header-content">
<a href="/" class="header-start">
<Image src={SudoVanillaLogo} format='webp' alt='SudoVanilla Logo' />
<Image src={SudoVanillaLogo} width={54} height={50} format='webp' alt='SudoVanilla Logo' />
<p>Sudo<span style="font-weight: bold;">Vanilla</span></p>
</a>
<div class="header-end">

View File

@ -12,12 +12,6 @@ import Message from '../../components/INCMessage.astro'
Description=""
Keywords="korbs, korbs studio, corbs, corbs studio"
>
<!-- <Hero
Title="Help Center"
Description="Articles are provided for software built by SudoVanilla, currently only being Penpot Desktop."
CTA_TEXT="Contact"
Artwork="/assets/images/banners/hw.png"
/> -->
<Content>
<Message
Title="Nothing is here..."

View File

@ -35,17 +35,9 @@ Title: "Hardware Information - SudoVanilla"
- Storage: 120GB
- OS: Fedora Workstation 38
## Gaming Rig (Not in Use)
## Gaming Rig
- CPU: Intel Core i7-8700 (12 Cores)
- RAM: 16GB
- Graphics: NVIDIA GeForce RTX 2070
- Storage: 500GB
- OS: Fedora Workstation 38
## Mac Pro
- Model: Mac Pro (2008)
- CPU: Intel Xeon (2 Cores)
- RAM: 9GB
- Graphics: NVIDIA GeForce 8800 GT
- Storage: 1.5TB
- OS: OS X Yosemite
- OS: Fedora Workstation 38

View File

@ -1,27 +0,0 @@
---
import Layout from '../../layouts/Default.astro'
import Content from '../../layouts/Content.astro'
// Components
import Hero from '../../components/Hero.astro'
import Message from '../../components/INCMessage.astro'
---
<Layout
Title="Help Center - SudoVanilla"
Description=""
Keywords="korbs, korbs studio, corbs, corbs studio, help, support"
>
<!-- <Hero
Title="Help Center"
Description="Articles are provided for software built by SudoVanilla, currently only being Penpot Desktop."
CTA_TEXT="Contact"
Artwork="/assets/images/banners/hw.png"
/> -->
<Content>
<Message
Title="Nothing is here..."
Description="The help center is new on SudoVanilla, come back later."
/>
</Content>
</Layout>

View File

@ -16,6 +16,7 @@ import Posts from '../components/Posts.astro'
Title="Newsroom"
Description="Stay up to date on what SudoVanilla is up to. See dev logs, major changes, and more."
CTA_TEXT="Subscribe"
CTA_LINK="/subscribe/"
Artwork="/assets/images/banners/hw.png"
/>
<Content>

27
src/pages/subscribe.astro Normal file
View File

@ -0,0 +1,27 @@
---
import Layout from '../layouts/Default.astro'
import Content from '../layouts/Content.astro'
// Components
import Hero from '../components/Hero.astro'
import Message from '../components/INCMessage.astro'
---
<Layout
Title="Documentations - SudoVanilla"
Description=""
Keywords="korbs, korbs studio, corbs, corbs studio"
>
<!-- <Hero
Title="Help Center"
Description="Articles are provided for software built by SudoVanilla, currently only being Penpot Desktop."
CTA_TEXT="Contact"
Artwork="/assets/images/banners/hw.png"
/> -->
<Content>
<Message
Title="Nothing is here..."
Description="The system for newsletters is not setup."
/>
</Content>
</Layout>

View File

@ -43,13 +43,13 @@ header {
display: grid;
grid-auto-flow: column;
align-items: center;
height: 200px;
height: 100px;
width: var(--MaxWidth);
.header-start {
display: flex;
align-items: center;
text-decoration: none;
height: 100px;
p {
font-size: 32px;
margin-left: 24px;
@ -63,12 +63,19 @@ header {
.header-end {
text-align: right;
a {
font-size: 18px;
text-decoration: none;
font-weight: bold;
margin-left: 24px;
margin-left: 6px;
background: transparent;
padding: 8px 16px;
border-radius: 6px;
transition: 0.4s background;
}
a:hover {
background: var(--PageBackground);
transition: 0.4s background;
}
}
}
@ -92,7 +99,6 @@ footer {
font-size: 18px;
text-align: left;
}
a {
display: flex;
margin-bottom: 8px;