Implemented mail button in footer
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { Github } from 'lucide-react';
|
import {Github, Mail} from 'lucide-react';
|
||||||
import {BrandLogo} from './BrandLogo';
|
import {BrandLogo} from './BrandLogo';
|
||||||
import {SOCIALS} from '../data/content';
|
import {SOCIALS} from '../data/content';
|
||||||
|
|
||||||
@@ -7,9 +7,24 @@ export const Footer = () => (
|
|||||||
<footer id="contact" className="py-12 border-t border-white/10 bg-black relative overflow-hidden">
|
<footer id="contact" className="py-12 border-t border-white/10 bg-black relative overflow-hidden">
|
||||||
<div className="absolute top-0 left-1/2 -translate-x-1/2 w-1/2 h-1 bg-[#00A3FF] blur-[100px] opacity-50"></div>
|
<div className="absolute top-0 left-1/2 -translate-x-1/2 w-1/2 h-1 bg-[#00A3FF] blur-[100px] opacity-50"></div>
|
||||||
<div className="max-w-7xl mx-auto px-6 flex flex-col md:flex-row justify-between items-center gap-8">
|
<div className="max-w-7xl mx-auto px-6 flex flex-col md:flex-row justify-between items-center gap-8">
|
||||||
<div className="flex items-center gap-3"><BrandLogo className="w-8 h-8 text-gray-600" /><span className="font-bold text-gray-500">LIQUID DEVELOPMENT</span></div>
|
<div className="flex items-center gap-3"><BrandLogo className="w-8 h-8 text-gray-600"/>
|
||||||
<div className="flex gap-6"><a href={SOCIALS.github} className="text-gray-400 hover:text-[#00A3FF] transition-colors"><Github size={24} /></a></div>
|
<span className="font-bold text-gray-500">LIQUID DEVELOPMENT</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-8">
|
||||||
|
<a href={SOCIALS.github}
|
||||||
|
className="text-gray-400 hover:text-[#00A3FF] transition-colors"
|
||||||
|
>
|
||||||
|
<Github size={24}/>
|
||||||
|
</a>
|
||||||
|
<a href={SOCIALS.email}
|
||||||
|
className="text-gray-400 hover:text-[#00A3FF] transition-colors"
|
||||||
|
>
|
||||||
|
<Mail size={24}/>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="text-center mt-8 text-gray-600 text-sm">© {new Date().getFullYear()} Liquid Development.
|
||||||
|
All rights reserved.
|
||||||
</div>
|
</div>
|
||||||
<div className="text-center mt-8 text-gray-600 text-sm">© {new Date().getFullYear()} Liquid Development. All rights reserved.</div>
|
|
||||||
</footer>
|
</footer>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user