This commit is contained in:
Benjamin Toby 2025-07-21 20:14:09 +01:00
parent 4cbe72fc8d
commit 1db7601c85
3 changed files with 25 additions and 2 deletions

View File

@ -1,7 +1,10 @@
import H2 from "@/components/lib/layout/H2"; import H2 from "@/components/lib/layout/H2";
import Link from "@/components/lib/layout/Link";
import Row from "@/components/lib/layout/Row";
import Section from "@/components/lib/layout/Section"; import Section from "@/components/lib/layout/Section";
import Span from "@/components/lib/layout/Span"; import Span from "@/components/lib/layout/Span";
import Stack from "@/components/lib/layout/Stack"; import Stack from "@/components/lib/layout/Stack";
import { UserRoundSearch } from "lucide-react";
export default function AboutSection() { export default function AboutSection() {
return ( return (
@ -12,6 +15,12 @@ export default function AboutSection() {
I'm passionate and dedicated to solving problems using the I'm passionate and dedicated to solving problems using the
best technologies available. best technologies available.
</Span> </Span>
<Link className="dotted-text" href="/about">
<Row>
<UserRoundSearch size={19} />
<Span>Learn More About Me</Span>
</Row>
</Link>
</Stack> </Stack>
</Section> </Section>
); );

View File

@ -13,8 +13,14 @@ export default function Main() {
<H1 className="leading-snug">About Me</H1> <H1 className="leading-snug">About Me</H1>
<Span> <Span>
I'm a man of few words. My{" "} I'm a man of few words. My{" "}
<Link href="/skills">Skills</Link> and{" "} <Link href="/skills" className="dotted-text">
<Link href="/work">Work</Link> speak for themselves. Skills
</Link>{" "}
and{" "}
<Link href="/work" className="dotted-text">
Work
</Link>{" "}
speak for themselves.
</Span> </Span>
</Stack> </Stack>
</Section> </Section>

View File

@ -66,3 +66,11 @@
.twui-a.active { .twui-a.active {
@apply !text-foreground-light dark:!text-foreground-dark font-bold; @apply !text-foreground-light dark:!text-foreground-dark font-bold;
} }
.dotted-text {
@apply border-0 border-b-2 border-dotted border-foreground-light/20 dark:!border-foreground-dark/20 pb-1;
}
.dotted-text:hover {
text-decoration: none !important;
}