Website/components/content.js

17 lines
873 B
JavaScript
Raw Normal View History

2021-11-01 12:31:47 +00:00
import styles from "../styles/Content.module.css";
2021-12-21 19:08:36 +00:00
import Socials from "./socials";
import Link from "next/link"
2022-02-17 16:17:35 +00:00
import Background from "./background";
2021-11-01 12:31:47 +00:00
2021-11-01 11:36:45 +00:00
export default function Content() {
2021-12-21 19:08:36 +00:00
return <>
2022-02-17 16:17:35 +00:00
<Background/>
<div style={{zIndex: '2', position: 'relative'}}>
2021-12-21 19:08:36 +00:00
<div className={styles.funyheader}>
2022-02-17 16:17:35 +00:00
<div className={styles.anime}><p className={[styles.bigboiheader, styles.ownRainbow, styles.rainbowText].join(' ')}>TheRed</p></div>
2021-12-21 19:08:36 +00:00
<Socials />
</div>
<div className={styles.Quote}>Hey there! Welcome to my website. I'm a full-stack developer, mostly specializing in web and app development. I'm currently working on a project called Chatsy, as well as some others! You can check them out <Link href="/projects"><a className={styles.Link}>here</a></Link>.</div>
2021-12-21 19:08:36 +00:00
</div>
</>
2021-11-01 11:36:45 +00:00
}