feat: stricter lint, check pipelines, docker-containers, pnpm
This commit is contained in:
17
src/portfolio/sections/Intro/Intro.tsx
Normal file
17
src/portfolio/sections/Intro/Intro.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import styles from "../../styling/intro.module.scss";
|
||||
import TopBar from "./TopBar";
|
||||
import IntroContent from "./IntroContent";
|
||||
import { getGreeting } from "./helpers";
|
||||
|
||||
const Intro = (): JSX.Element => {
|
||||
const greeting = getGreeting();
|
||||
|
||||
return (
|
||||
<section className={styles.section}>
|
||||
<TopBar/>
|
||||
<IntroContent greeting={greeting}/>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default Intro;
|
||||
Reference in New Issue
Block a user