new-personal-site/components/pages/Home/(sections)/AboutSection.tsx

19 lines
622 B
TypeScript
Raw Normal View History

2024-12-09 15:36:17 +00:00
import H2 from "@/components/lib/layout/H2";
import Section from "@/components/lib/layout/Section";
import Span from "@/components/lib/layout/Span";
import Stack from "@/components/lib/layout/Stack";
export default function AboutSection() {
return (
<Section>
<Stack className="w-full max-w-full xl:max-w-[50vw]">
<H2 className="leading-snug">About Me</H2>
<Span>
I'm passionate and dedicated to solving problems using the
best technologies available.
</Span>
</Stack>
</Section>
);
}