Skip to content

Commit 7d5c75f

Browse files
Create Footer.tsx
1 parent 650906c commit 7d5c75f

1 file changed

Lines changed: 50 additions & 0 deletions

File tree

  • LocalMind-Frontend/src/shared/component/v1
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
import React from 'react'
2+
import { Link } from 'react-router-dom'
3+
4+
const Footer: React.FC = () => {
5+
const currentYear = new Date().getFullYear()
6+
7+
return (
8+
<footer className="bg-gray-900 text-white py-8 px-4 md:px-12">
9+
<div className="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-3 gap-6">
10+
{/* Brand + Description */}
11+
<div>
12+
<h3 className="text-xl font-bold">LocalMind</h3>
13+
<p className="mt-2 text-sm text-gray-300">
14+
Your Data. Your AI. No Compromises.
15+
</p>
16+
</div>
17+
18+
{/* Navigation Links */}
19+
<div className="flex flex-col space-y-2 text-sm">
20+
<Link to="/" className="hover:underline">
21+
Home
22+
</Link>
23+
<Link to="/privacy-policy" className="hover:underline">
24+
Privacy Policy
25+
</Link>
26+
<Link to="/terms-conditions" className="hover:underline">
27+
Terms & Conditions
28+
</Link>
29+
<Link to="/docs" className="hover:underline">
30+
Docs
31+
</Link>
32+
</div>
33+
34+
{/* Social / Info */}
35+
<div className="text-sm text-gray-300">
36+
<p>Built with ❤️ by NexGenStudioDev</p>
37+
<p className="mt-1">No tracking. No data capture.</p>
38+
</div>
39+
</div>
40+
41+
<hr className="border-gray-800 my-6" />
42+
43+
<p className="text-center text-xs text-gray-500">
44+
&copy; {currentYear} LocalMind. All rights reserved.
45+
</p>
46+
</footer>
47+
)
48+
}
49+
50+
export default Footer

0 commit comments

Comments
 (0)