mirror of
https://github.com/JustAnimeCore/JustAnime.git
synced 2026-04-17 22:01:45 +00:00
footer is now looking good
This commit is contained in:
49
src/pages/contact/Contact.jsx
Normal file
49
src/pages/contact/Contact.jsx
Normal file
@@ -0,0 +1,49 @@
|
||||
import React from 'react';
|
||||
import website_name from '@/src/config/website.js';
|
||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||
import { faDiscord, faGithub } from "@fortawesome/free-brands-svg-icons";
|
||||
import { faPaperPlane } from "@fortawesome/free-solid-svg-icons";
|
||||
|
||||
function Contact() {
|
||||
return (
|
||||
<div className="max-w-4xl mx-auto px-4 py-8">
|
||||
<h1 className="text-2xl font-bold mb-6">Contact Us</h1>
|
||||
<div className="space-y-8 text-white/60">
|
||||
<p>
|
||||
Get in touch with the {website_name} team through any of the following platforms:
|
||||
</p>
|
||||
<div className="flex flex-wrap gap-6">
|
||||
<a
|
||||
href="https://t.me/zenime_discussion"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="flex items-center gap-3 px-4 py-3 bg-white/5 hover:bg-white/10 rounded-lg transition-colors group"
|
||||
>
|
||||
<FontAwesomeIcon icon={faPaperPlane} className="text-xl text-white/60 group-hover:text-white" />
|
||||
<span className="text-white/60 group-hover:text-white">Join our Telegram</span>
|
||||
</a>
|
||||
<a
|
||||
href="#"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="flex items-center gap-3 px-4 py-3 bg-white/5 hover:bg-white/10 rounded-lg transition-colors group"
|
||||
>
|
||||
<FontAwesomeIcon icon={faDiscord} className="text-xl text-white/60 group-hover:text-white" />
|
||||
<span className="text-white/60 group-hover:text-white">Join Discord Server</span>
|
||||
</a>
|
||||
<a
|
||||
href="#"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="flex items-center gap-3 px-4 py-3 bg-white/5 hover:bg-white/10 rounded-lg transition-colors group"
|
||||
>
|
||||
<FontAwesomeIcon icon={faGithub} className="text-xl text-white/60 group-hover:text-white" />
|
||||
<span className="text-white/60 group-hover:text-white">GitHub</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Contact;
|
||||
Reference in New Issue
Block a user