|
1 | 1 | /*
|
2 | 2 | Large box that has an image oriented to right, specialized for homefield
|
3 | 3 | */
|
| 4 | +// TODO - would make more sense for this to be the Home section, and move logic from Home.jsx onto here |
4 | 5 | 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"; |
11 | 7 |
|
12 | 8 | const HomeField = () => {
|
13 | 9 | return (
|
14 | 10 | <>
|
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 | + > |
16 | 20 | <Stack align="left" mt="1rem" spacing={5}>
|
17 | 21 | <Heading mb="2rem" align="left">
|
18 | 22 | <Text>Hello! My name is Rayan</Text>
|
19 | 23 | </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> |
43 | 49 | </Stack>
|
44 | 50 | </Box>
|
45 | 51 | </>
|
|
0 commit comments