-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #410 from mansi066/main
Enhance the footer #404
- Loading branch information
Showing
5 changed files
with
181 additions
and
35 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,10 +134,7 @@ | |
|
||
|
||
|
||
To begin the development, run `npm start` or `yarn start`. | ||
To create a production bundle, use `npm run build` or `yarn build`. | ||
--> | ||
|
||
|
||
<style> | ||
.voting-button { | ||
display: inline-block; | ||
|
@@ -179,14 +176,52 @@ | |
<div class="button-container"> | ||
<a href="voting_system.html" class="voting-button">Voting System</a> | ||
</div> | ||
<p>© 2024 Tic-Tac-Toe Game</p> | ||
|
||
<div class="footer-content"> | ||
<div class="footer-section about"> | ||
<h3>About Tic-Tac-Toe 2024</h3> | ||
<p>Welcome to the best online Tic-Tac-Toe experience! Play against friends, challenge the AI, and enjoy the fun!</p> | ||
</div> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> | ||
|
||
<div class="footer-section links"> | ||
<h3>Quick Links</h3> | ||
<ul> | ||
<li><a href="#home">Home</a></li> | ||
<li><a href="#how-to-play">About</a></li> | ||
<li><a href="#leaderboard">Rules</a></li> | ||
<li><a href="#contact">Contact</a></li> | ||
</ul> | ||
</div> | ||
<div class="footer-section legal"> | ||
<h3>Legal</h3> | ||
<ul> | ||
<li><a href="#privacy-policy">Privacy Policy</a></li> | ||
<li><a href="#terms-conditions">Terms & Conditions</a></li> | ||
<li><a href="#cookie-policy">Cookie Policy</a></li> | ||
</ul> | ||
</div> | ||
<div class="footer-section contact"> | ||
<h3>Contact Us</h3> | ||
<ul> | ||
<li><a href="mailto:[email protected]">[email protected]</a></li> | ||
<li><a href="tel:+1234567890">+1 234 567 890</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div class="footer-bottom"> | ||
<p>© 2024 Tic-Tac-Toe Game. All rights reserved.</p> | ||
</div> | ||
|
||
|
||
<ul class="social-links"> | ||
<li><a href="#" target="_blank"><i class="fa fa-facebook"></i></a></li> | ||
<li><a href="#" target="_blank"><i class="fa fa-twitter"></i></a></li> | ||
<li><a href="#" target="_blank"><i class="fa fa-instagram"></i></a></li> | ||
<li><a href="https://www.linkedin.com/in/iamparas0/" target="_blank"><i class="fab fa-linkedin"></i></a></li> | ||
<li><a href="https://x.com/iamparas0" target="_blank"><i class="fab fa-twitter"></i></a></li> | ||
<li><a href="https://www.instagram.com/iamparas.0/" target="_blank"><i class="fab fa-instagram"></i></a></li> | ||
</ul> | ||
</div> | ||
</footer> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
{ | ||
|
||
"rewrites":[ | ||
{"source" : "./(.*)", "destination" : "/"} | ||
] | ||
|
||
"version": 2, | ||
"builds": [ | ||
{ | ||
"src": "index.html", | ||
"use": "@vercel/static" | ||
} | ||
], | ||
"rewrites": [ | ||
{ | ||
"source": "/(.*)", | ||
"destination": "/" | ||
} | ||
], | ||
"git": { | ||
"deploymentEnabled": { | ||
"main": false | ||
} | ||
} | ||
} | ||
|
||
"rewrites":[ | ||
{"source" : "./(.*)", "destination" : "/"} | ||
], | ||
"git": { | ||
"deploymentEnabled": { | ||
"main": false | ||
} | ||
} | ||
} | ||
|