From 1db7601c852daa8aaf9aeeaf299f461544a4d6fd Mon Sep 17 00:00:00 2001 From: Benjamin Toby Date: Mon, 21 Jul 2025 20:14:09 +0100 Subject: [PATCH] Updates --- components/pages/Home/(sections)/AboutSection.tsx | 9 +++++++++ components/pages/about/index.tsx | 10 ++++++++-- styles/globals.css | 8 ++++++++ 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/components/pages/Home/(sections)/AboutSection.tsx b/components/pages/Home/(sections)/AboutSection.tsx index 97c7ad7..648f237 100644 --- a/components/pages/Home/(sections)/AboutSection.tsx +++ b/components/pages/Home/(sections)/AboutSection.tsx @@ -1,7 +1,10 @@ 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 Span from "@/components/lib/layout/Span"; import Stack from "@/components/lib/layout/Stack"; +import { UserRoundSearch } from "lucide-react"; export default function AboutSection() { return ( @@ -12,6 +15,12 @@ export default function AboutSection() { I'm passionate and dedicated to solving problems using the best technologies available. + + + + Learn More About Me + + ); diff --git a/components/pages/about/index.tsx b/components/pages/about/index.tsx index 423455d..e65865a 100644 --- a/components/pages/about/index.tsx +++ b/components/pages/about/index.tsx @@ -13,8 +13,14 @@ export default function Main() {

About Me

I'm a man of few words. My{" "} - Skills and{" "} - Work speak for themselves. + + Skills + {" "} + and{" "} + + Work + {" "} + speak for themselves. diff --git a/styles/globals.css b/styles/globals.css index 6b6cdcd..c62f96f 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -66,3 +66,11 @@ .twui-a.active { @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; +}