Skip to content

Commit c4ed699

Browse files
Fix: Footer should span full width
Expanded the footer to span the full width of the page, similar to the header.
1 parent 6f93273 commit c4ed699

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/landing/LandingFooter.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11

2+
23
import { Globe, TrendingUp, Github } from "lucide-react";
34
import { Link } from "react-router-dom";
45
import { LanguageSelector } from "@/components/LanguageSelector";
@@ -10,7 +11,7 @@ export const LandingFooter = () => {
1011
return (
1112
<footer className="py-16 px-4 sm:px-6 lg:px-8 bg-slate-900 border-t border-slate-800">
1213

13-
<div className="max-w-7xl mx-auto">
14+
<div className="mx-auto">
1415
<div className="grid md:grid-cols-5 gap-8">
1516
<div className="md:col-span-2">
1617
<div className="font-bold text-3xl text-white mb-4">RefSpring</div>
@@ -76,3 +77,4 @@ export const LandingFooter = () => {
7677
</footer>
7778
);
7879
};
80+

0 commit comments

Comments
 (0)