diff --git a/src/app/(__PAGES__)/layout.tsx b/src/app/(__PAGES__)/layout.tsx index ad5d104..653c80c 100644 --- a/src/app/(__PAGES__)/layout.tsx +++ b/src/app/(__PAGES__)/layout.tsx @@ -6,7 +6,7 @@ function Layout({ children }: { children: JSX.Element }) { return (
-
+
{children} {/*
*/} diff --git a/src/components/contact-form.tsx b/src/components/contact-form.tsx index be1a3ab..0835283 100644 --- a/src/components/contact-form.tsx +++ b/src/components/contact-form.tsx @@ -48,7 +48,7 @@ function ContactForm() { return (
-
+
- {subTitle} + + {subTitle} +
{title} diff --git a/src/components/me-card.tsx b/src/components/me-card.tsx index 0ef1797..935611b 100644 --- a/src/components/me-card.tsx +++ b/src/components/me-card.tsx @@ -33,24 +33,18 @@ const icons = { ), }; -function MeCard({ - className, - button, -}: { - button: { label: string; link: string }; - className?: string; -}) { +function MeCard({ className }: { className?: string }) { return (
-
+
me
@@ -79,8 +73,8 @@ function MeCard({
-

- A Software Engineer who has developed countless innovative solutions. +

+ Web Developer

diff --git a/src/components/setions/projects.tsx b/src/components/setions/projects.tsx index c75914d..6a434f3 100644 --- a/src/components/setions/projects.tsx +++ b/src/components/setions/projects.tsx @@ -7,14 +7,9 @@ import MeCard from "../me-card"; import Heading from "../heading"; const ProjectCard = (p: Project) => ( - - {/*
{`[ ${p.year} ]`}
*/} -
-
+ +
+
project-image ( className="object-cover" />
-
+
{`[ ${p.year} ]`}

{p.name}

@@ -30,28 +25,22 @@ const ProjectCard = (p: Project) => (

- +
); function Projects() { return ( -
- +
+
- + {projects.map((p) => (