Skip to content

Commit 5da2d74

Browse files
committed
fix: update footer and navbar layout for improved responsiveness
- Adjusted max-width and padding for footer and navbar components to enhance layout on various screen sizes.
1 parent 96b454f commit 5da2d74

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

components/landing-page/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function Footer() {
1515
className='z-30 border-t border-[#2B2B2B] bg-black'
1616
role='contentinfo'
1717
>
18-
<div className='mx-auto max-w-7xl px-4 py-8 sm:px-6 lg:px-8'>
18+
<div className='mx-auto max-w-[1440px] px-5 py-8 md:px-[50px] lg:px-[100px]'>
1919
<div className='hidden items-start justify-between md:flex'>
2020
<div className='flex flex-col space-y-4'>
2121
<Link href='/' aria-label='Boundless homepage'>

components/landing-page/navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function Navbar() {
6969

7070
return (
7171
<nav className='sticky top-0 z-50 border-b border-white/10 bg-[#030303]/95 shadow-lg shadow-black/20 backdrop-blur-xl'>
72-
<div className='mx-auto max-w-7xl px-4 sm:px-6 lg:px-8'>
72+
<div className='mx-auto max-w-[1440px] px-5 md:px-[50px] lg:px-[100px]'>
7373
<div className='flex h-16 items-center justify-between gap-4'>
7474
{/* Logo */}
7575
<Logo />

0 commit comments

Comments
 (0)