Skip to content
Open
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/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";

const Footer = () => {
return (
<footer className="footer border z-10 border-t-[#33353F] border-l-transparent border-r-transparent text-white">
<footer className="footer border z-10 border-t-[#33353F] border-l-transparent border-r-transparent border-b-transparent text-white">
<div className="container p-12 flex justify-between">
<span>LOGO</span>
<p className="text-slate-600">All rights reserved.</p>
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/HeroSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ const HeroSection = () => {
transition={{ duration: 0.5 }}
className="col-span-4 place-self-center mt-4 lg:mt-0"
>
<div className="rounded-full bg-[#181818] w-[250px] h-[250px] lg:w-[400px] lg:h-[400px] relative">
<div className="rounded-full bg-[#181818] w-[250px] h-[250px] lg:w-[400px] lg:h-[400px] relative pfp-container">
<Image
src="/images/hero-image.png"
alt="hero image"
className="absolute transform -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2"
className="absolute transform -translate-x-1/2 -translate-y-1/2 top-1/2 left-1/2 pfp"
width={300}
height={300}
/>
Expand Down
10 changes: 10 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,13 @@ body {
)
rgb(var(--background-start-rgb));
}

.pfp-container {
overflow: hidden;
}

.pfp {
object-fit: cover;
width: 100%;
height: 100%;
}