replaced <img> with <Image>
This commit is contained in:
@@ -1,13 +1,11 @@
|
|||||||
import { Main } from "../ui/Main";
|
import { Main } from "../ui/Main";
|
||||||
import { PageFooter } from "../ui/PageFooter";
|
|
||||||
import { PageHeader } from "../ui/PageHeader";
|
|
||||||
|
|
||||||
const TermsPage = () =>
|
const TermsPage = () =>
|
||||||
<Main>
|
<Main>
|
||||||
<article className="prose container">
|
<article className="prose container">
|
||||||
<h1>Terms of Service for Home Utility Bills Tracking Web Application</h1>
|
<h1>Terms of Service for Home Utility Bills Tracking Web Application</h1>
|
||||||
<h2>1. Introduction</h2>
|
<h2>1. Introduction</h2>
|
||||||
<p>Welcome to our Home Utility Bills Tracking Web Application (“App”). These Terms of Service (“Terms”) govern your access to and use of our App. By accessing or using the App, you agree to be bound by these Terms.</p>
|
<p>Welcome to our Home Utility Bills Tracking Web Application ("App”). These Terms of Service (“Terms”) govern your access to and use of our App. By accessing or using the App, you agree to be bound by these Terms.</p>
|
||||||
<h2>2. Use of the Service</h2>
|
<h2>2. Use of the Service</h2>
|
||||||
<ol>
|
<ol>
|
||||||
<li><strong>Eligibility</strong>: You must be at least 18 years old to use the App.</li>
|
<li><strong>Eligibility</strong>: You must be at least 18 years old to use the App.</li>
|
||||||
@@ -24,7 +22,7 @@ const TermsPage = () =>
|
|||||||
<ol>
|
<ol>
|
||||||
<li>Violates any law or regulation.</li>
|
<li>Violates any law or regulation.</li>
|
||||||
<li>Is harmful, fraudulent, deceptive, threatening, harassing, defamatory, obscene, or otherwise objectionable.</li>
|
<li>Is harmful, fraudulent, deceptive, threatening, harassing, defamatory, obscene, or otherwise objectionable.</li>
|
||||||
<li>Jeopardizes the security of your account or anyone else's account.</li>
|
<li>Jeopardizes the security of your account or anyone else's account.</li>
|
||||||
</ol>
|
</ol>
|
||||||
<h2>5. Modifications to the App</h2>
|
<h2>5. Modifications to the App</h2>
|
||||||
<p>We reserve the right to modify or discontinue, temporarily or permanently, the App (or any part thereof) with or without notice.</p>
|
<p>We reserve the right to modify or discontinue, temporarily or permanently, the App (or any part thereof) with or without notice.</p>
|
||||||
@@ -41,7 +39,7 @@ const TermsPage = () =>
|
|||||||
<h2>9. Governing Law</h2>
|
<h2>9. Governing Law</h2>
|
||||||
<p>These Terms shall be governed and construed in accordance with the laws of Croatia, without regard to its conflict of law provisions.</p>
|
<p>These Terms shall be governed and construed in accordance with the laws of Croatia, without regard to its conflict of law provisions.</p>
|
||||||
<h2>10. Changes</h2>
|
<h2>10. Changes</h2>
|
||||||
<p>We reserve the right, at our sole discretion, to modify or replace these Terms at any time. We will try to provide at least [number] days' notice prior to any new terms taking effect.</p>
|
<p>We reserve the right, at our sole discretion, to modify or replace these Terms at any time. We will try to provide at least 10 days' notice prior to any new terms taking effect.</p>
|
||||||
<h2>11. Contact Us</h2>
|
<h2>11. Contact Us</h2>
|
||||||
<p>If you have any questions about these Terms, please contact us at [Contact Information].</p>
|
<p>If you have any questions about these Terms, please contact us at [Contact Information].</p>
|
||||||
</article>
|
</article>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import Image from "next/image";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
@@ -6,7 +7,7 @@ export const PageFooter: React.FC = () =>
|
|||||||
<footer className="footer mx-auto max-w-2xl px-4 py-10">
|
<footer className="footer mx-auto max-w-2xl px-4 py-10">
|
||||||
<div>
|
<div>
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<img src="/icon4.png"></img>
|
<Image src="/icon4.png" alt="logo"></Image>
|
||||||
<div className="font-title inline-flex text-3xl font-black">Bills Tracker</div>
|
<div className="font-title inline-flex text-3xl font-black">Bills Tracker</div>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-base-content/70 mb-5">Web app for tracking home utility bills</p>
|
<p className="text-base-content/70 mb-5">Web app for tracking home utility bills</p>
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
|
import Image from "next/image";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
|
||||||
export const PageHeader = () =>
|
export const PageHeader = () =>
|
||||||
<div className="navbar bg-base-100 mb-6">
|
<div className="navbar bg-base-100 mb-6">
|
||||||
<Link className="btn btn-ghost text-xl" href="/"><img src="/icon3.png"></img> Utility Bills Tracker</Link>
|
<Link className="btn btn-ghost text-xl" href="/"><Image src="/icon3.png" alt="logo" /> Utility Bills Tracker</Link>
|
||||||
</div>
|
</div>
|
||||||
Reference in New Issue
Block a user