Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

24T1 Adding lab0 to nav bar #260

Merged
merged 3 commits into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const navItems = [
'title': 'Contribute',
},
{
'path': 'opendev',
'title': 'Open Dev',
'path': 'labzero',
'title': 'Lab 0',
},
{
'path': 'about',
Expand Down
141 changes: 141 additions & 0 deletions pages/labzero/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
import ArticleLayout from 'components/ArticleLayout'
import { Box } from 'components/Box'
import { Flex } from 'components/Flex'
import { Text } from 'components/Text'
import type { NextPage } from 'next'
import Head from 'next/head'
import { styled } from '@stitches/react'

const LinksContainer = styled(Flex, {
width: '60%',
maxWidth: '600px',
margin: '0 auto',
justifyContent: 'space-between',
}
)

const LabZero: NextPage = () => {
return (
<ArticleLayout>
<Head>
<title>Lab 0 - CSESoc Learn</title>
<meta name="description" content="CSESoc Lab 0" />
<link rel="icon" href="/favicon.ico" />
</Head>
<Text
as="h1"
size="display"
css={{
color: '$slate12',
fontWeight: '600',
paddingTop: '$2',
alignSelf: 'center'
}}>
Lab 0 2024
</Text>
<Box css={{ paddingTop: '$2' }}>
<Text
size="info">
<p>
CSESoc&apos;s Lab 0 is back once again for 2024!
</p>
<p>
Feeling lost after your first COMP1511 lecture? Not sure how to
navigate VLAB and TigerVNC? Or are you looking to level up your
home computing setup and get it looking wonderful?
</p>
<p>
If any of that applies to you, then you need to come to Lab 0!
Come learn how to ditch TigerVNC and upgrade your development
experience!
</p>
</Text>
</Box>

<Text
size="headline"
css={{
color: '$slate12',
fontWeight: '600',
padding: '$2',
alignSelf: 'center',
marginTop: '1rem',
}}>
Useful links:
</Text>
<Text
size="title-lg"
css={{
color: '$slate12',
fontWeight: '200',
padding: '$2',
alignSelf: 'center',
marginTop: '2rem',
}}>TigerVNC + VLAB</Text>
<LinksContainer justify="around">
<a href="https://cgi.cse.unsw.edu.au/~cs1511/24T1/home_computing/vlab.html" target="_blank">UNSW&apos;s Official Guide</a>
</LinksContainer>

<Text
size="title-lg"
css={{
color: '$slate12',
fontWeight: '200',
padding: '$2',
alignSelf: 'center',
marginTop: '2em',
}}>CSE + VSCode</Text>
<LinksContainer justify="around">
<a href="https://abiram.me/cse-setup" target="_blank">Abiram&apos;s Guide </a>
<a href="https://abiram.me/cse-sshfs" target="_blank">Further Reading (SSHFS)</a>
</LinksContainer>

<Text
size="title-lg"
css={{
color: '$slate12',
fontWeight: '200',
padding: '$2',
alignSelf: 'center',
marginTop: '2rem',
}}>VSCode Customising</Text>
<LinksContainer justify="around">
<a href="https://www.canva.com/design/DAF9S44qAQs/T2zuda-Kcf0xj58m5ODglw/edit" target="_blank"> Slides </a>
<a href="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-linux.pdf" target="_blank">VSCode Shortcuts</a>
<a href="https://vscodethemes.com/" target="_blank">VSCode Themes</a>
</LinksContainer>


<Text
size="title-lg"
css={{
color: '$slate12',
fontWeight: '200',
padding: '$2',
alignSelf: 'center',
marginTop: '2rem',
}}>Terminal Customising</Text>
<LinksContainer justify="around">
<a href="https://github.com/ohmyzsh/ohmyzsh/wiki/Installing-ZSH" target="_blank">OhMyZsh</a>
<a href="https://github.com/zsh-users/zsh-autosuggestions/blob/master/INSTALL.md" target="_blank">Zsh Autosuggestions</a>
<a href="https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#oh-my-zsh" target="_blank">PowerLevel10k</a>
</LinksContainer>

<Text
size="title-lg"
css={{
color: '$slate12',
fontWeight: '200',
padding: '$2',
alignSelf: 'center',
marginTop: '2rem',
}}>Helpful Guides</Text>
<LinksContainer justify="around">
<a href="https://www.freecodecamp.org/news/how-to-configure-your-macos-terminal-with-zsh-like-a-pro-c0ab3f3c1156/" target="_blank">MacOS Guide</a>
<a href="https://github.com/lronsmith/csesoc-edu-wsl-install-guide/blob/main/guide.md" target="_blank">Last year&apos;s WSL install guide (Windows)</a>
</LinksContainer>
</ArticleLayout >
)
}

export default LabZero
Loading