Skip to content

Commit 37f0fde

Browse files
committed
homepage update and small css fix
1 parent 083a095 commit 37f0fde

File tree

2 files changed

+37
-31
lines changed

2 files changed

+37
-31
lines changed

src/components/HomeField.jsx

+36-30
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,51 @@
11
/*
22
Large box that has an image oriented to right, specialized for homefield
33
*/
4+
// TODO - would make more sense for this to be the Home section, and move logic from Home.jsx onto here
45
import React from "react";
5-
import {
6-
Box,
7-
Text,
8-
Stack,
9-
Heading,
10-
} from "@chakra-ui/react";
6+
import { Box, Text, Stack, Heading } from "@chakra-ui/react";
117

128
const HomeField = () => {
139
return (
1410
<>
15-
<Box bg="#DCCAE9" borderRadius="1rem" w="100%" h="100%" pb={3} pl={5} pr={5}>
11+
<Box
12+
bg="#DCCAE9"
13+
borderRadius="1rem"
14+
w="100%"
15+
h="100%"
16+
pb={3}
17+
pl={5}
18+
pr={5}
19+
>
1620
<Stack align="left" mt="1rem" spacing={5}>
1721
<Heading mb="2rem" align="left">
1822
<Text>Hello! My name is Rayan</Text>
1923
</Heading>
20-
<Text>
21-
I am currently a Computer Science student at the University of
22-
California, Irvine
23-
</Text>
24-
<Text>I am passionate about Music, History, and Software.</Text>
25-
<Text>
26-
I like learning about Algorithms, Programming Languages, and more.
27-
</Text>
28-
<Text>
29-
Currently I am studying Quantum Computing and Graph Algorithms.
30-
</Text>
31-
<Text>
32-
Currently I am working on several personal projects,
33-
AntAlmanac, a project for a local nonprofit, and an AI chatbot to
34-
query a startup's database using natural language.
35-
</Text>
36-
<Text>
37-
Feel free to check out all the projects I've worked on in the Projects section. Projects include personal projects,
38-
school projects, and open source contributions.
39-
</Text>
40-
<Text>
41-
I'm also happy to connect on LinkedIn, with a link to mine on the top right of this page.
42-
</Text>
24+
<Text>
25+
I am currently an Associate Full Stack Developer at Codazen, on
26+
assignment at Meta.
27+
</Text>
28+
<Text>
29+
I am an alumni Computer Science student at the University of
30+
California, Irvine with a specialization in Algorithms
31+
</Text>
32+
<Text>I am passionate about Music, History, and Software.</Text>
33+
<Text>
34+
I like learning about Algorithms, Programming Languages, and more.
35+
</Text>
36+
{/* <Text>
37+
Currently I am studying Quantum Computing and Graph Algorithms.
38+
</Text> */}
39+
<Text>Currently I am working building a blog.</Text>
40+
<Text>
41+
Feel free to check out all the projects I've worked on in the
42+
Projects section. Projects include personal projects, school
43+
projects, and open source contributions.
44+
</Text>
45+
<Text>
46+
I'm also happy to connect on LinkedIn, with a link to mine on the
47+
top right of this page.
48+
</Text>
4349
</Stack>
4450
</Box>
4551
</>

src/sections/Home.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const Home = () => {
4343
mr={imageSize}
4444
mb={3}
4545
/>
46-
<Center width="55%" mt="5rem">
46+
<Center width="55%" mt="1rem">
4747
<HomeField />
4848
</Center>
4949
</Flex>

0 commit comments

Comments
 (0)