Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/(pages)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ export default function Home() {
/>
</div>

<div className="flex flex-col w-full gap-5 px-3 pb-5 md:px-5 md:pb-5 rounded-xl">
<div className="flex flex-col w-full gap-10 px-3 pb-5 md:px-5 md:pb-10">
{RecentProjects.map((project, index) => (
<Suspense
key={project.id}
Expand Down
8 changes: 4 additions & 4 deletions src/components/RecentProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ const RecentProjectCard = ({
</div>
<h2
ref={desktopDescriptionRef}
className="font-funnel-sans text-gray-200 text-[12px] xs:text-[16px] font-regular wrap-break-words leading-relaxed"
className="font-funnel-sans text-white/75 text-[12px] xs:text-[16px] font-regular wrap-break-words leading-relaxed"
>
{workDescription}
</h2>
Expand All @@ -240,7 +240,7 @@ const RecentProjectCard = ({
{isMobile ? (
<div
id="recent-project-card-mobile"
className="flex flex-col gap-3 w-full pb-6 bg-linear-to-b from-accent-900 via-accent-950 to-accent-900 overflow-x-hidden rounded-xl border border-white/10"
className="flex flex-col gap-3 w-full pb-6 bg-black/40 backdrop-blur-sm overflow-x-hidden rounded-2xl border border-white/10 shadow-2xl shadow-black/30"
>
<div className="flex flex-col w-full h-[50dvh]">
<ImageCarousel images={galleryImages} />
Expand Down Expand Up @@ -271,7 +271,7 @@ const RecentProjectCard = ({
</div>
<h2
ref={mobileDescriptionRef}
className="font-funnel-sans text-gray-200 text-[12px] xs:text-[16px] font-regular wrap-break-words leading-relaxed"
className="font-funnel-sans text-white/75 text-[12px] xs:text-[16px] font-regular wrap-break-words leading-relaxed"
>
{workDescription}
</h2>
Expand All @@ -287,7 +287,7 @@ const RecentProjectCard = ({
) : (
<div
id="recent-project-card-desktop"
className="flex flex-row gap-3 w-full bg-linear-to-b from-accent-900 via-accent-950 to-accent-900 overflow-x-hidden rounded-xl border border-white/10"
className="flex flex-row gap-3 w-full bg-black/40 backdrop-blur-sm overflow-x-hidden rounded-2xl border border-white/10 shadow-2xl shadow-black/30"
>
<div className="flex flex-col w-1/2 min-h-0">
{isEven ? (
Expand Down