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
9 changes: 1 addition & 8 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,7 @@ import { socialMedia } from "../data";

const Footer = () => {
return (
<footer className="w-full pt-20 pb-10" id="contact">
<div className="w-full absolute left-0 -bottom-72 min-h-96">
<img
src="/footer-grid.svg"
alt="grid"
className="w-full h-full opacity-50"
/>
</div>
<footer className="w-full pb-10 mb-[100px] md:mb-5" id="contact">
<div className="flex flex-col items-center">
<h1 className="heading lg:max-w-[45vw]">
Connect with <span className="text-purple">Me</span>
Expand Down
2 changes: 1 addition & 1 deletion components/ui/FloatingNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const FloatingNav = ({
)}
>
<span className="block sm:hidden">{navItem.icon}</span>
<span className="hidden sm:block text-sm">{navItem.name}</span>
<span className="text-sm !cursor-pointer">{navItem.name}</span>
</Link>
))}
</motion.div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Footer from "../../components/Footer";

export default function Home() {
return (
<main className="relative bg-black-100 flex justify-center items-center flex-col overflow-hidden mx-auto sm:px-10 px-5">
<main className="relative bg-black-100 flex justify-center items-center flex-col mx-auto sm:px-10 px-5 overflow-clip">
<div className="max-w-7xl w-full">
<FloatingNav navItems={navItems} />
<Hero />
Expand Down