Website/components/content.js

15 lines
725 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"
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 <>
<div style={{zIndex: '1', position: 'relative'}}>
<div className={styles.funyheader}>
<p className={styles.bigboiheader}>TheRed</p>
<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
}