Rename some exports

This commit is contained in:
2022-10-20 22:11:17 +02:00
parent e17bd61579
commit 5a8df80c36
3 changed files with 6 additions and 7 deletions

View File

@@ -32,7 +32,7 @@ const SkillCard: NextPage<{ card: SkillCard }> = ({ card }) => {
</div>;
};
const AboutMe: NextPage = () => {
const Me: NextPage = () => {
useEffect(() => {
const handleScrollAnimation = () => {
document.querySelectorAll(".vpAnimated").forEach((element) => {
@@ -69,7 +69,6 @@ const AboutMe: NextPage = () => {
<h2>Skills</h2>
{skills().cards.map((card, i) => <SkillCard key={i} card={card} />)}
</Layout>;
};
export default AboutMe;
export default Me;