Files
my-portfolio/src/Client/src/pages/AboutPage.tsx
2024-04-26 17:49:46 +01:00

23 lines
657 B
TypeScript

import AboutTabs from "../components/AboutTabs";
import AnchorLink from "../components/AnchorLink";
import Text from "../components/Text";
import Title from "../components/Title";
export default function AboutPage() {
return (
<>
<Title className="text-center pb-4">This App</Title>
<Text>
Below is an overview of how this simple app is made and what
technologies are used. If you'd like to dive straight in, the full
project is available on my{" "}
<AnchorLink href="https://github.com/bdfin/my-portfolio">
GitHub
</AnchorLink>
.
</Text>
<AboutTabs />
</>
);
}