Skip to content

Commit c97c86f

Browse files
committed
fix: update website
1 parent 6d7896e commit c97c86f

File tree

2 files changed

+20
-27
lines changed

2 files changed

+20
-27
lines changed

src/react/About.tsx

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
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

63
const 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
};

src/react/Work.tsx

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@ interface WorkExperienceData {
1212
}
1313

1414
const data: WorkExperienceData = {
15-
Datadog: {
16-
title: "Software Engineering Intern",
17-
date: "May 2025 - Aug 2025",
18-
description: ["Currently working on the DataViz team"],
19-
},
15+
// Datadog: {
16+
// title: "Software Engineering Intern",
17+
// date: "May 2025 - Aug 2025",
18+
// description: [
19+
// "Currently working on the DataViz team",
20+
// "Added a new custom viewbox feature to the Geomap widget",
21+
// "Improving the UX of the hostmap widget by",
22+
// ],
23+
// },
2024
X: {
2125
title: "Software Engineering Intern",
2226
date: "Jan 2025 - Apr 2025",
@@ -133,7 +137,7 @@ const TabMobile: React.FC<{ name: string; selected?: boolean; setSelected: React
133137
};
134138

135139
const WorkExperience: React.FC = () => {
136-
const [selected, setSelected] = useState("Fleet");
140+
const [selected, setSelected] = useState(Object.keys(data)[0]);
137141
const [isMobile] = useMobile();
138142

139143
return (

0 commit comments

Comments
 (0)