Skip to content

Commit

Permalink
change text to be smaller on mobile screens for about description, re…
Browse files Browse the repository at this point in the history
…ady for new deploy
  • Loading branch information
kimmykokonut committed Nov 5, 2024
1 parent a8cb024 commit 59ebda5
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 8 deletions.
38 changes: 32 additions & 6 deletions app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,44 @@ export default function About() {
>
<div className="border-slate-500 py-8 px-4 sm:py-16 xl:px-16 max-w-4xl mx-auto">
<h2 className="text-4xl font-bold mb-4">About Kim</h2>
<p className="text-base lg:text-lg leading-relaxed mb-2">
I am a full-stack developer with hands-on experience in JavaScript, React, Python, C#, and building Web APIs. During my internship at Clarity Innovations, I tackled feature development and bug fixes for an EdTech project dashboard to streamline the user experience. My diverse background in science, education, and creative roles gives me a unique problem-solving perspective. I am passionate about community building and have volunteered in various educational and environmental initiatives. I am eager to contribute to a mission-driven company and grow alongside a collaborative team.
<p className="text-sm sm:text-base lg:text-lg leading-relaxed mb-2">
I am a full-stack developer with hands-on experience in JavaScript,
React, Python, C#, and building Web APIs. During my internship at
Clarity Innovations, I tackled feature development and bug fixes for
an EdTech project dashboard to streamline the user experience. My
diverse background in science, education, and creative roles gives me
a unique problem-solving perspective. I am passionate about community
building and have volunteered in various educational and environmental
initiatives. I am eager to contribute to a mission-driven company and
grow alongside a collaborative team.
</p>
<div className="flex flex-row mt-8">
<TabButton selectTab={() => handleTabChange("skills")} active={tab === "skills"}>{" "}Tech Stack{" "}</TabButton>
<TabButton selectTab={() => handleTabChange("databaseTest")} active={tab === "databaseTest"}>{" "}DB & Test{" "}</TabButton>
<TabButton selectTab={() => handleTabChange("education")} active={tab === "education"}>{" "}Education{" "}</TabButton>
<TabButton
selectTab={() => handleTabChange("skills")}
active={tab === "skills"}
>
{" "}
Tech Stack{" "}
</TabButton>
<TabButton
selectTab={() => handleTabChange("databaseTest")}
active={tab === "databaseTest"}
>
{" "}
DB & Test{" "}
</TabButton>
<TabButton
selectTab={() => handleTabChange("education")}
active={tab === "education"}
>
{" "}
Education{" "}
</TabButton>
</div>
<div className="mt-4">
{selectedTab ? selectedTab.content : <p>Content not found</p>}
</div>
</div>
</section>
);
}
}
4 changes: 2 additions & 2 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
//uncomment these 2 before pushing and new build
// basePath: "/kimmykokonut.github.io",
// output: "export", //enables static exports
basePath: "/kimmykokonut.github.io",
output: "export", //enables static exports
reactStrictMode: true,
};

Expand Down

0 comments on commit 59ebda5

Please sign in to comment.