Skip to content

Commit

Permalink
issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
piyyu committed Jun 12, 2024
1 parent fe7c43d commit ce931e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion components/Hero.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import bgImg from "@/assets/Frame 1000005985.png";
import Image from "next/image";

export default function Hero() {
return (
<div className="relative h-screen flex items-center justify-center overflow-hidden">
<div className="absolute inset-0 flex items-center justify-center">
<img
<Image
src={bgImg.src}
alt="bg img"
className="object-cover scale-150 sm:scale-150 md:block lg:block"
width={700}
height={700}
/>
</div>
<div className="flex-col text-center text-white z-10 mb-20 px-10">
Expand Down
2 changes: 1 addition & 1 deletion components/Initiatives.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Card from "../components/ui/Card";

export default function Initiatives () {
return (
<div className="flex flex-col items-center justify-between gap-16 mb-16">
<div className="flex flex-col items-center justify-between gap-16 mb-16 mt-16">
<h1 className="text-3xl lg:text-5xl font-bold text-white text-center lg:py-6">We Include</h1>
<div className="flex flex-col gap-10 justify-evenly text-center md:flex-row lg:flex-row text-3xl text-custom-gray2 font-bold">
<div className="flex items-center justify-center lg:justify-start gap-3 lg:mb-0">
Expand Down

0 comments on commit ce931e9

Please sign in to comment.