Skip to content

Commit

Permalink
Added welcome page graphics
Browse files Browse the repository at this point in the history
  • Loading branch information
leonlenk committed Apr 20, 2024
1 parent 2a4f62c commit 73dde05
Show file tree
Hide file tree
Showing 6 changed files with 608 additions and 4 deletions.
28 changes: 27 additions & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
import styles from "@/styles/index.module.scss";

export default function Page() {
return <></>;
return (
<>
<div className={styles.welcomeContainer}>
<div className={styles.welcomeTextContainer}>
<h1>Welcome to</h1>
<div className={styles.logoContainer}>
<span className={styles.aiIcon} />
<p className={styles.acmText}>acm.</p>
<p className={styles.aiText}>ai</p>
<p className={styles.bangText}>!</p>
</div>
<h4>
Leon puts the L in
<br />
Machine Leonrning
<br />
:)
</h4>
</div>
<div className={styles.diamondBackground}>
<div className={styles.diamond}></div>
</div>
</div>
</>
);
}
Loading

0 comments on commit 73dde05

Please sign in to comment.