Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug: Fixed footer nav links and also restored the scrollbar successfully issue 569 #573

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import Blocked from "./pages/Blocked";
import GoogleTranslate from "./components/GoogleTranslate";
import ProgressScrollDown from "./components/ProgressScrollDown";
import Preloader from "./components/PreLoader";
import "./App.css"
// import axios from "axios";
// axios.defaults.baseURL = "http://localhost:3001/";

Expand Down
18 changes: 9 additions & 9 deletions frontend/src/pages/Policy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ function Policy() {
return (
<div className="-mt-4 w-full text-[#1A202C] bg-gradient-animated dark:text-gray-200 dark:bg-[#1A202C] py-16 px-4" style={{ fontFamily: 'Roboto, sans-serif' }}>
<div className="max-w-7xl mx-auto space-y-12">
<div className="bg-white dark:bg-gray-800 p-8 rounded-lg shadow-md transition-transform duration-300 hover:shadow-lg transform hover:scale-105">

<div id="privacy-policy" className="py-20 bg-white dark:bg-gray-800 px-8 rounded-lg shadow-md transition-transform duration-300 hover:shadow-lg transform hover:scale-105">
<div className="flex flex-col md:flex-row items-start space-y-4 md:space-y-0 md:space-x-8 mb-8">
<img src={privacy} alt="Privacy" className="rounded-lg w-32 h-32" />
<div>
<h1 id="privacy-policy" className="text-4xl font-bold mb-4 scroll-margin-top">Privacy Policy</h1>
<h1 className="text-4xl font-bold mb-4 scroll-margin-top">Privacy Policy</h1>
<section className="leading-relaxed space-y-4">
<p>Your privacy is important to us. This privacy policy explains how we collect, use, and protect your personal information when you use our website.</p>
<div>
Expand Down Expand Up @@ -72,12 +73,11 @@ function Policy() {
</div>
</div>
</div>

<div className="bg-white dark:bg-gray-800 p-8 rounded-lg shadow-md transition-transform duration-300 hover:shadow-lg transform hover:scale-105">
<div id="terms-and-conditions" className="py-20 bg-white dark:bg-gray-800 px-8 rounded-lg shadow-md transition-transform duration-300 hover:shadow-lg transform hover:scale-105">
<div className="flex flex-col md:flex-row items-start space-y-4 md:space-y-0 md:space-x-8 mb-8">
<img src={terms} alt="Terms" className="rounded-lg w-32 h-32" />
<div>
<h1 id="terms-and-conditions" className="text-4xl font-bold mb-4 scroll-margin-top">Terms and Conditions</h1>
<h1 className="text-4xl font-bold mb-4 scroll-margin-top">Terms and Conditions</h1>
<section className="leading-relaxed space-y-4">
<p>Please read these terms and conditions carefully before using our website.</p>
<div>
Expand Down Expand Up @@ -123,11 +123,11 @@ function Policy() {
</div>
</div>

<div className="bg-white dark:bg-gray-800 p-8 rounded-lg shadow-md transition-transform duration-300 hover:shadow-lg transform hover:scale-105">
<div id="cookie-policy" className="py-20 bg-white dark:bg-gray-800 px-8 rounded-lg shadow-md transition-transform duration-300 hover:shadow-lg transform hover:scale-105">
<div className="flex flex-col md:flex-row items-start space-y-4 md:space-y-0 md:space-x-8 mb-8">
<img src={cookie} alt="Cookie" className="rounded-lg w-32 h-32" />
<div>
<h1 id="cookie-policy" className="text-4xl font-bold mb-4 scroll-margin-top">Cookie Policy</h1>
<h1 className="text-4xl font-bold mb-4 scroll-margin-top">Cookie Policy</h1>
<section className="leading-relaxed space-y-4">
<p>This cookie policy explains how we use cookies and similar technologies on our website.</p>
<div>
Expand Down Expand Up @@ -165,11 +165,11 @@ function Policy() {
</div>
</div>

<div className="bg-white dark:bg-gray-800 p-8 rounded-lg shadow-md transition-transform duration-300 hover:shadow-lg transform hover:scale-105">
<div id="licensing" className="bg-white dark:bg-gray-800 px-8 py-20 rounded-lg shadow-md transition-transform duration-300 hover:shadow-lg transform hover:scale-105">
<div className="flex flex-col md:flex-row items-start space-y-4 md:space-y-0 md:space-x-8 mb-8">
<img src={terms} alt="MITLicense" className="rounded-lg w-32 h-32" />
<div>
<h1 id="licensing" className="text-4xl font-bold mb-4 scroll-margin-top">Licensing</h1>
<h1 className="text-4xl font-bold mb-4 scroll-margin-top">Licensing</h1>
<section className="leading-relaxed space-y-4">
<h3 className="text-2xl font-semibold mt-4">MIT License</h3>
<p>Our project is distributed under the MIT License, a permissive free software license that allows you to reuse, modify, and distribute the software with minimal restrictions, ensuring flexibility and freedom in your development endeavors.</p>
Expand Down
Loading