mirror of https://github.com/sgoudham/website.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
933 B
TypeScript
28 lines
933 B
TypeScript
1 year ago
|
import { FancyUnderline, GroupedText, Text } from "./utils/Text";
|
||
|
|
||
|
export const About = () => {
|
||
|
return (
|
||
|
<GroupedText className="text-center">
|
||
|
<Text>
|
||
|
I am a{" "}
|
||
|
<FancyUnderline className="font-semibold" decoration="decoration-green">
|
||
|
software engineer
|
||
|
</FancyUnderline>{" "}
|
||
|
at the BBC and a{" "}
|
||
|
<FancyUnderline className="font-semibold" decoration="decoration-red">student</FancyUnderline>,
|
||
|
currently pursuing a BSc in Software Engineering at the University of
|
||
|
Glasgow.
|
||
|
</Text>
|
||
|
<Text>
|
||
|
You'll usually find me nerding out about technology and playing
|
||
|
video games. I also really enjoy contributing to open source projects,
|
||
|
mainly{" "}
|
||
|
<FancyUnderline className="font-semibold" decoration="decoration-peach">
|
||
|
Catppuccin
|
||
|
</FancyUnderline>
|
||
|
.
|
||
|
</Text>
|
||
|
</GroupedText>
|
||
|
);
|
||
|
};
|