Skip to content

Commit 887a73d

Browse files
Add border radius to language selector
Added border radius to the language selector in the footer.
1 parent 42afd0b commit 887a73d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/landing/LandingFooter.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import { Globe, TrendingUp, Github } from "lucide-react";
32
import { Link } from "react-router-dom";
43
import { LanguageSelector } from "@/components/LanguageSelector";
@@ -9,6 +8,7 @@ export const LandingFooter = () => {
98

109
return (
1110
<footer className="py-16 px-4 sm:px-6 lg:px-8 bg-slate-900 border-t border-slate-800">
11+
1212
<div className="max-w-7xl mx-auto">
1313
<div className="grid md:grid-cols-5 gap-8">
1414
<div className="md:col-span-2">
@@ -61,7 +61,7 @@ export const LandingFooter = () => {
6161
<div className="border-t border-slate-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center gap-4">
6262
<p className="text-slate-400">&copy; 2024 RefSpring. All rights reserved.</p>
6363
<div className="flex flex-col sm:flex-row items-center gap-4">
64-
<div className="bg-white rounded-lg p-2">
64+
<div className="bg-white rounded-xl p-3 shadow-lg">
6565
<LanguageSelector />
6666
</div>
6767
<div className="flex gap-6">

0 commit comments

Comments
 (0)