diff --git a/components/Navbar.tsx b/components/Navbar.tsx index f73af47..b48bfad 100644 --- a/components/Navbar.tsx +++ b/components/Navbar.tsx @@ -26,8 +26,8 @@ const navItems = [ 'title': 'Contribute', }, { - 'path': 'opendev', - 'title': 'Open Dev', + 'path': 'labzero', + 'title': 'Lab 0', }, { 'path': 'about', diff --git a/pages/labzero/index.tsx b/pages/labzero/index.tsx new file mode 100644 index 0000000..c696cab --- /dev/null +++ b/pages/labzero/index.tsx @@ -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 ( + + + Lab 0 - CSESoc Learn + + + + + Lab 0 2024 + + + +

+ CSESoc's Lab 0 is back once again for 2024! +

+

+ 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? +

+

+ 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! +

+
+
+ + + Useful links: + + TigerVNC + VLAB + + UNSW's Official Guide + + + CSE + VSCode + + Abiram's Guide + Further Reading (SSHFS) + + + VSCode Customising + + Slides + VSCode Shortcuts + VSCode Themes + + + + Terminal Customising + + OhMyZsh + Zsh Autosuggestions + PowerLevel10k + + + Helpful Guides + + MacOS Guide + Last year's WSL install guide (Windows) + +
+ ) +} + +export default LabZero