1- import { Box , HStack , Heading , Text , Image , VStack , List , ListItem , ListIcon , Center , SimpleGrid , Link } from "@chakra-ui/react" ;
2- import headshot from "../assets/headshot.jpg" ;
3- import { ArrowForwardIcon } from "@chakra-ui/icons" ;
4- import { useMobile } from "../utils/hooks" ;
1+ import { Box , HStack , Heading , Text , VStack } from "@chakra-ui/react" ;
52
63const About : React . FC = ( ) => {
7- const [ isMobile ] = useMobile ( ) ;
8-
94 return (
105 < Box id = "about" pt = "6em" >
116 < Heading fontSize = "3xl" mb = "1em" >
@@ -14,20 +9,14 @@ const About: React.FC = () => {
149 < HStack alignItems = "flex-start" >
1510 < VStack alignItems = "flex-start" fontSize = "1rem" >
1611 < Text >
17- Greetings! I'm Victor, student at the University of Waterloo and a passionate software enthusiast who enjoys crafting diverse
18- software experiences. Outside of classes, I've been hacking away on projects such as a car physics simulator and an AI-powered
19- fighter game. I'm particularly drawn to computer vision, seeing its potential in real-world applications from autonomous
20- vehicles to medical applications like cancer detection.
12+ Hey there! I’m Victor Wei, a Software Engineering student at the University of Waterloo with a passion for building thoughtful,
13+ high-impact software. I’ve developed and launched fullstack applications, multiplayer games with millions of players, and
14+ infrastructure tools that support real-world scalability.
2115 </ Text >
2216
23- < Text >
24- Recently, I've been working on Miniblox, a multiplayer voxel engine that runs in the browser. Feel free to check it out @{ " " }
25- < Link color = "blue.400" href = "https://miniblox.io" target = "_blank" >
26- miniblox.io
27- </ Link >
28- </ Text >
17+ < Text > Outside of work and classes, I've been hacking away at a few web-based games. Feel free to check them out below!</ Text >
2918
30- < Text > Here's a few technologies I've been working with recently:</ Text >
19+ { /* <Text>Here's a few technologies I've been working with recently:</Text>
3120
3221 <SimpleGrid columns={2} spacing={2} w="90%">
3322 <List>
@@ -63,16 +52,16 @@ const About: React.FC = () => {
6352 Kubernetes
6453 </ListItem>
6554 </List>
66- </ SimpleGrid >
55+ </SimpleGrid> */ }
6756 </ VStack >
6857
69- { ! isMobile && < Image src = { headshot } h = "300px" > </ Image > }
58+ { /* { !isMobile && <Image src={headshot} h="300px"></Image> } */ }
7059 </ HStack >
71- { isMobile && (
60+ { /* { isMobile && (
7261 <Center w="100%">
7362 <Image src={headshot} h="300px" mt="2em"></Image>
7463 </Center>
75- ) }
64+ )} */ }
7665 </ Box >
7766 ) ;
7867} ;
0 commit comments