feat: init

This commit is contained in:
2023-10-01 00:14:36 +08:00
commit 972da85a63
17 changed files with 213 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export default function AboutPage() {
return (
<div>
<h1></h1>
</div>
);
}

3
src/pages/index.less Normal file
View File

@@ -0,0 +1,3 @@
.title {
background: rgb(121, 242, 157);
}

9
src/pages/index.tsx Normal file
View File

@@ -0,0 +1,9 @@
import styles from './index.less';
export default function IndexPage() {
return (
<div>
<h1 className={styles.title}>Page index</h1>
</div>
);
}