Website/components/content.js

16 lines
756 B
JavaScript
Executable File

import styles from "../styles/Content.module.css";
import Image from "next/image";
import Socials from "./socials";
import TrianglesBG from "./trianglesbg";
export default function Content() {
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 <a href="/projects" className={styles.Link}>here</a>.</div>
</div>
</>
}