Create site with contact form and email verification
This commit removes the redundant logo.svg file. It then adds several new components including 'footer', 'contact_form', 'home', 'verify_email' in forms/src/components directory. It also includes associated CSS files for styling these components. Updates have also been made in the index.html file for SEO metadata. Changes made aim to enhance functionality and improve user interface.
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
import React, { FC } from 'react';
|
||||
import './Footer.css';
|
||||
|
||||
const Footer: FC = () => {
|
||||
const version: string = "1.20.4"; // replace with your version
|
||||
|
||||
return (
|
||||
<footer>
|
||||
<div id="footer">
|
||||
<div id="footerinner">
|
||||
<div id="footertext">
|
||||
<h2>ABOUT US</h2>
|
||||
<p>Altitude is a community-centered {version} version survival server. We're one of those
|
||||
servers you come to call "home". We are your place to get together with friends and play
|
||||
survival, with a few extra features suggested by our community!</p>
|
||||
<div className="followus">
|
||||
<a target="_blank" rel="noopener" href="https://discordapp.com/invite/TGqpzCJ">
|
||||
<img src="https://alttd.com//assets/img/logos/discord.png" alt="Discord Button"/>
|
||||
</a>
|
||||
<a target="_blank" rel="noopener" href="https://twitter.com/alttdmc">
|
||||
<img src="https://alttd.com//assets/img/logos/twitter.png" alt="Twitter Button"/>
|
||||
</a>
|
||||
<a target="_blank" rel="noopener" href="https://instagram.com/alttdmc">
|
||||
<img src="https://alttd.com/assets/img/logos/instagram.png" alt="Instagram Button"/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div className="footernav">
|
||||
<h2>COMMUNITY</h2>
|
||||
<ul>
|
||||
<li><a target="_blank" rel="noopener"
|
||||
href="https://discordapp.com/invite/TGqpzCJ">Discord</a></li>
|
||||
<li><a target="_blank" rel="noopener" href="https://alttd.com/blog">Blog</a></li>
|
||||
<li><a target="_blank" rel="noopener" href="https://twitter.com/alttdmc">Twitter</a></li>
|
||||
<li><a target="_blank" rel="noopener" href="https://instagram.com/alttdmc">Instagram</a>
|
||||
</li>
|
||||
<li><a target="_blank" rel="noopener" href="https://reddit.com/r/alttd">Reddit</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div className="footernav">
|
||||
<h2>SERVER</h2>
|
||||
<ul>
|
||||
<li><a href="https://alttd.com/about">About Us</a></li>
|
||||
<li><a href="https://alttd.com/team">Staffing Team</a></li>
|
||||
<li><a href="https://alttd.com/policy">Privacy Policy</a></li>
|
||||
<li><a href="https://alttd.com/terms">Terms of Use</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<p id="copyright">Copyright © 2015-2023 Altitude. All rights Reserved. Not affiliated with Mojang AB or
|
||||
Microsoft.</p>
|
||||
</div>
|
||||
</footer>
|
||||
)
|
||||
};
|
||||
|
||||
export default Footer;
|
||||
Reference in New Issue
Block a user