2023-10-24 17:59:00 +00:00
|
|
|
import React from "react";
|
|
|
|
import MoreAboutMe from "./(components)/MoreAboutMe";
|
|
|
|
import Hero from "./(components)/Hero";
|
|
|
|
|
|
|
|
export default function AboutPage() {
|
|
|
|
return (
|
|
|
|
<React.Fragment>
|
|
|
|
<Hero />
|
|
|
|
<MoreAboutMe />
|
|
|
|
</React.Fragment>
|
|
|
|
);
|
|
|
|
}
|