Skip to content

Commit 2f5d79e

Browse files
committed
chore: section space added
1 parent 36b5198 commit 2f5d79e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/app/components/home/Hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "./hero.css";
55

66
const Hero = () => {
77
return (
8-
<section className="w-full mt-35">
8+
<section className="w-full mt-35 px-6">
99
<div className="max-w-7xl mx-auto flex flex-col gap-2 justify-center items-center">
1010
<div className="group relative w-32 sm:w-40 md:w-48 lg:w-56 aspect-square overflow-hidden rounded-full transition-all duration-300">
1111
<Image

src/app/components/home/Skills.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export const skillsData: SkillGroup[] = [
6666

6767
const Skills = () => {
6868
return (
69-
<section className="w-full mt-25">
69+
<section className="w-full mt-25 px-6">
7070
<div className="max-w-7xl mx-auto flex flex-col gap-2 justify-center items-center">
7171
<div className="text-center flex flex-col justify-center items-center">
7272
<span className="underline decoration-1 decoration-red-500">
@@ -80,7 +80,7 @@ const Skills = () => {
8080
</p>
8181
</div>
8282
<div className="max-w-4xl">
83-
<div className="mt-6 flex w-full gap-4 border border-gray-700 text-gray-300 backdrop-blur-3xl bg-[#161B22]/70 p-8 rounded-2xl">
83+
<div className="mt-6 flex flex-col md:flex-row w-full gap-4 border border-gray-700 text-gray-300 backdrop-blur-3xl bg-[#161B22]/70 p-8 rounded-2xl">
8484
{skillsData.map((skill) => (
8585
<SkillsCard key={skill.title} group={skill} />
8686
))}

0 commit comments

Comments
 (0)