Refactor project titles by removing emojis and update job descriptions in data.ts
All checks were successful
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Successful in 54s
All checks were successful
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Successful in 54s
Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
@@ -11,7 +11,7 @@ const CommercialProjects = () => {
|
||||
>
|
||||
<div className="text-center">
|
||||
<h3 className="mt-4 mb-2 text-5xl font-bold tracking-tight text-white">
|
||||
Commissioned Work 💼
|
||||
Commissioned Work
|
||||
</h3>
|
||||
<p className="text-xl text-white/80 max-w-2xl mx-auto">
|
||||
Selected commercial projects and freelance commissions.
|
||||
|
||||
@@ -4,7 +4,7 @@ import Chip from "./chip";
|
||||
import formatDate from "@/utils/format-date";
|
||||
|
||||
const ExperienceCard = ({ job }: { job: Job }) => (
|
||||
<div className="bg-transparent backdrop-blur-sm glass-effect flex flex-col gap-2 p-4 text-white w-[20rem] max-w-[20rem] rounded-lg shadow-lg">
|
||||
<div className="transition-all duration-300 bg-white/5 backdrop-blur-md border border-white/10 rounded-3xl hover:bg-white/10 hover:border-white/20 shrink-0 snap-center shadow-xl group w-[20rem] max-w-[20rem] flex flex-col gap-2 p-4">
|
||||
<h4 className="flex items-center gap-1 text-2xl">
|
||||
<CircleUserRound /> {job.position}
|
||||
</h4>
|
||||
|
||||
@@ -8,7 +8,7 @@ const Experience = ({ jobs }: { jobs: Job[] }) => {
|
||||
className="flex flex-col items-center justify-center gap-4 p-4 rounded w-full"
|
||||
>
|
||||
<h3 className="mt-4 mb-2 text-5xl font-bold tracking-tight text-white">
|
||||
Experience 📈
|
||||
Experience
|
||||
</h3>
|
||||
<div className="flex flex-wrap justify-center gap-4">
|
||||
{jobs.map((job) => (
|
||||
|
||||
@@ -12,7 +12,7 @@ const Skills = ({ skills }: SkillsProps) => {
|
||||
className="flex flex-col items-center justify-center gap-4 p-4 rounded w-full"
|
||||
>
|
||||
<h3 className="mt-4 mb-2 text-5xl font-bold tracking-tight text-white">
|
||||
Skills 🛠️
|
||||
Skills
|
||||
</h3>
|
||||
<div className="flex flex-wrap justify-center w-full max-w-lg gap-4">
|
||||
{skills.map((skill, index) => (
|
||||
|
||||
Reference in New Issue
Block a user