Initial commit

This commit is contained in:
2022-05-19 11:35:14 +03:00
commit 68f9600e08
27 changed files with 3568 additions and 0 deletions

20
src/components/Hero.tsx Normal file
View File

@@ -0,0 +1,20 @@
import { useI18n } from "@solid-primitives/i18n";
import styles from './Hero.module.css';
export default () => {
const [t] = useI18n();
return (
<header class={styles.Hero}>
<div>
<h1 class={styles.gradientText}>
{t('my_name')}
</h1>
<div>
{t('tagline')}
</div>
</div>
</header>
)
};