Skip to content

Commit 28d3077

Browse files
committed
add python and postgres to tools, make photo smaller
1 parent bac5b0f commit 28d3077

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

app/components/ImageReveal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ interface ImageRevealProps extends Omit<ImageProps, "placeholder"> {
1010

1111
export function ImageReveal({ className = "", ...img }: ImageRevealProps): ReactElement {
1212
return (
13-
<div className={`relative max-w-96 overflow-hidden rounded-2xl ${className} `}>
13+
<div className={`relative max-w-60 overflow-hidden rounded-2xl ${className} `}>
1414
<MotionDiv
1515
initial={{ x: "100%" }}
1616
whileInView={{ x: 0 }}

app/components/ServicesSectionV2.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ const tech = [
99
{ name: "React", src: "react" },
1010
{ name: "Next", src: "next" },
1111
{ name: "TypeScript", src: "typescript" },
12+
{ name: "Python", src: "python" },
1213
{ name: "Express", src: "express" },
1314
{ name: "OpenAI", src: "openai" },
1415
{ name: "MongoDB", src: "mongodb" },
16+
{ name: "PostgreSQL", src: "postgresql" },
1517
{ name: "Figma", src: "figma" },
1618
{ name: "Motion", src: "motion" },
1719
]
@@ -84,13 +86,13 @@ export const ServicesSectionV2: React.FC = ({ className = "" }: { className?: st
8486
</AnimatedH2>
8587

8688
{/* Tech Stack */}
87-
<div>
89+
<div className="w-full">
8890
<Text size="base" className="mb-8">
8991
My tech stack
9092
</Text>
9193

9294
<MotionUl
93-
className="flex flex-wrap gap-8"
95+
className="grid w-full grid-cols-5 justify-items-center gap-8"
9496
variants={container}
9597
initial="hidden"
9698
whileInView="visible"

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const metadata: Metadata = {
3030
const RootLayout = ({ children }: { children: React.ReactNode }) => {
3131
return (
3232
<html lang="en">
33-
<body {...bodyAttributes} className="relative bg-white" data-mobile-menu="closed" data-scrolled="up">
33+
<body {...bodyAttributes} className="relative min-w-[300px] bg-white" data-mobile-menu="closed" data-scrolled="up">
3434
<MotionWrapper>
3535
<DesktopCursor />
3636
<ViewTransitions />

public/custom-icons.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)