From bda70451927d7472814401d9253483be238c9b9c Mon Sep 17 00:00:00 2001 From: pphatdev Date: Fri, 4 Jul 2025 15:07:27 +0700 Subject: [PATCH 1/2] =?UTF-8?q?=E2=9C=A8=20feat:=20add=20AboutMeSection=20?= =?UTF-8?q?and=20GradientLines=20components,=20update=20HomePage=20layout?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(web)/(home)/page.tsx | 4 +- .../(web)/(home)/sections/home-aboutme.tsx | 82 +++++++++++++++++++ src/components/ui/gradient-line.tsx | 39 +++++++++ src/components/ui/title.tsx | 28 +++++++ 4 files changed, 152 insertions(+), 1 deletion(-) create mode 100644 src/app/(web)/(home)/sections/home-aboutme.tsx create mode 100644 src/components/ui/gradient-line.tsx create mode 100644 src/components/ui/title.tsx diff --git a/src/app/(web)/(home)/page.tsx b/src/app/(web)/(home)/page.tsx index 8e750f8..b9184f3 100644 --- a/src/app/(web)/(home)/page.tsx +++ b/src/app/(web)/(home)/page.tsx @@ -4,6 +4,7 @@ import { ProjectsSection } from './sections/projects'; import { metadata as meta } from './data/meta'; import { AboutTimeline } from './sections/timeline'; import { Footer } from '@/components/ui/footer'; +import { AboutMeSection } from './sections/home-aboutme'; export const metadata: Metadata = meta @@ -14,8 +15,9 @@ export default function HomePage() {
- + +