-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated app.html with enhanced meta keywords for better SEO, commente…
…d out an unused script, modified header.svelte to streamline imports and updated navigation links, and added a footer with navigation links in +layout.svelte for improved user experience.
- Loading branch information
Showing
6 changed files
with
223 additions
and
14 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<script lang="ts"> | ||
import * as Card from '$lib/components/ui/card/index.js'; | ||
</script> | ||
|
||
<title>About - Text Compare Tool</title> | ||
|
||
<meta | ||
name="description" | ||
content="Learn more about Text Compare Tool - A powerful tool for comparing and editing text side by side." | ||
/> | ||
|
||
<div class="container mx-auto max-w-4xl px-4 py-12 md:px-6"> | ||
<Card.Root class="shadow-lg"> | ||
<Card.Header class="space-y-2"> | ||
<Card.Title class="text-3xl font-bold">About Us</Card.Title> | ||
<Card.Description class="text-xl text-muted-foreground"> | ||
Discover the story behind Text Compare Tool | ||
</Card.Description> | ||
</Card.Header> | ||
<Card.Content class="prose dark:prose-invert max-w-none"> | ||
<div class="space-y-6"> | ||
<p class="text-lg leading-7"> | ||
Text Compare Tool is a powerful web application designed to make text comparison and | ||
editing as simple and efficient as possible. | ||
</p> | ||
|
||
<div class="rounded-lg bg-muted/50 p-6"> | ||
<h3 class="mb-4 text-xl font-semibold">Our Mission</h3> | ||
<p> | ||
Our mission is to provide developers, writers, and professionals with a reliable and | ||
user-friendly tool for comparing and analyzing text differences. | ||
</p> | ||
</div> | ||
|
||
<div> | ||
<h3 class="mb-4 text-xl font-semibold">Key Features</h3> | ||
<ul class="grid list-none gap-3 pl-0"> | ||
<li class="flex items-center gap-2"> | ||
<span class="h-2 w-2 rounded-full bg-primary"></span> | ||
Side-by-side text comparison | ||
</li> | ||
<li class="flex items-center gap-2"> | ||
<span class="h-2 w-2 rounded-full bg-primary"></span> | ||
Line-by-line difference highlighting | ||
</li> | ||
<li class="flex items-center gap-2"> | ||
<span class="h-2 w-2 rounded-full bg-primary"></span> | ||
Easy acceptance of changes | ||
</li> | ||
<li class="flex items-center gap-2"> | ||
<span class="h-2 w-2 rounded-full bg-primary"></span> | ||
Dark and light mode support | ||
</li> | ||
<li class="flex items-center gap-2"> | ||
<span class="h-2 w-2 rounded-full bg-primary"></span> | ||
Responsive design | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</Card.Content> | ||
</Card.Root> | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<script lang="ts"> | ||
import * as Card from '$lib/components/ui/card/index.js'; | ||
import { Mail, Twitter, Github } from 'lucide-svelte'; | ||
</script> | ||
|
||
<title>Contact Us - Text Compare Tool</title> | ||
|
||
<meta | ||
name="description" | ||
content="Get in touch with us about Text Compare Tool. We'd love to hear your feedback and suggestions." | ||
/> | ||
|
||
<div class="container mx-auto max-w-4xl px-4 py-12 md:px-6"> | ||
<Card.Root class="shadow-lg"> | ||
<Card.Header class="space-y-2"> | ||
<Card.Title class="text-3xl font-bold">Contact Us</Card.Title> | ||
<Card.Description class="text-xl text-muted-foreground"> | ||
We'd love to hear from you | ||
</Card.Description> | ||
</Card.Header> | ||
<Card.Content class="prose dark:prose-invert max-w-none"> | ||
<div class="space-y-6"> | ||
<p class="text-lg leading-7"> | ||
We value your feedback and are here to help. If you have any questions, suggestions, or | ||
concerns, please don't hesitate to reach out. | ||
</p> | ||
|
||
<div class="grid gap-6 md:grid-cols-2"> | ||
<div class="flex flex-col items-center rounded-lg bg-muted/50 p-6"> | ||
<Mail class="mb-4 h-8 w-8 text-primary" /> | ||
<h3 class="text-lg font-semibold">Email</h3> | ||
<p class="text-center text-sm">rinturajc@gmail.com</p> | ||
</div> | ||
|
||
<div class="flex flex-col items-center rounded-lg bg-muted/50 p-6"> | ||
<Github class="mb-4 h-8 w-8 text-primary" /> | ||
<h3 class="text-lg font-semibold">GitHub</h3> | ||
<a href="https://github.com/rinturaj/textcompare" class="text-center text-sm" | ||
>https://github.com/rinturaj/textcompare</a | ||
> | ||
</div> | ||
</div> | ||
|
||
<div class="mt-6 rounded-lg bg-muted/50 p-6"> | ||
<p class="text-sm leading-7"> | ||
For bug reports and feature requests, please visit our GitHub repository and create an | ||
issue. | ||
</p> | ||
</div> | ||
</div> | ||
</Card.Content> | ||
</Card.Root> | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<script lang="ts"> | ||
import * as Card from '$lib/components/ui/card/index.js'; | ||
import { Shield, Database, Cookie } from 'lucide-svelte'; | ||
</script> | ||
|
||
<title>Privacy Policy - Text Compare Tool</title> | ||
|
||
<meta | ||
name="description" | ||
content="Read our privacy policy to understand how we handle your data at Text Compare Tool." | ||
/> | ||
|
||
<div class="container mx-auto max-w-4xl px-4 py-12 md:px-6"> | ||
<Card.Root class="shadow-lg"> | ||
<Card.Header class="space-y-2"> | ||
<Card.Title class="text-3xl font-bold">Privacy Policy</Card.Title> | ||
<Card.Description class="text-muted-foreground"> | ||
Last updated: {new Date().toLocaleDateString()} | ||
</Card.Description> | ||
</Card.Header> | ||
<Card.Content class="prose dark:prose-invert max-w-none"> | ||
<div class="space-y-8"> | ||
<div class="rounded-lg bg-muted/50 p-6"> | ||
<div class="mb-4 flex items-center gap-3"> | ||
<Shield class="h-6 w-6 text-primary" /> | ||
<h3 class="m-0 text-xl font-semibold">Data Collection</h3> | ||
</div> | ||
<p> | ||
Text Compare Tool is committed to protecting your privacy. We do not collect or store | ||
any of the text content you compare using our tool. All comparisons are performed | ||
entirely in your browser. | ||
</p> | ||
</div> | ||
|
||
<div class="rounded-lg bg-muted/50 p-6"> | ||
<div class="mb-4 flex items-center gap-3"> | ||
<Database class="h-6 w-6 text-primary" /> | ||
<h3 class="m-0 text-xl font-semibold">Usage Data</h3> | ||
</div> | ||
<p> | ||
We may collect anonymous usage statistics to help improve our service. This includes: | ||
</p> | ||
<ul class="mt-4 grid list-none gap-2 pl-0"> | ||
<li class="flex items-center gap-2"> | ||
<span class="h-2 w-2 rounded-full bg-primary"></span> | ||
Browser type and version | ||
</li> | ||
<li class="flex items-center gap-2"> | ||
<span class="h-2 w-2 rounded-full bg-primary"></span> | ||
Operating system | ||
</li> | ||
<li class="flex items-center gap-2"> | ||
<span class="h-2 w-2 rounded-full bg-primary"></span> | ||
Page visit duration | ||
</li> | ||
<li class="flex items-center gap-2"> | ||
<span class="h-2 w-2 rounded-full bg-primary"></span> | ||
Features used | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<div class="rounded-lg bg-muted/50 p-6"> | ||
<div class="mb-4 flex items-center gap-3"> | ||
<Cookie class="h-6 w-6 text-primary" /> | ||
<h3 class="m-0 text-xl font-semibold">Cookies</h3> | ||
</div> | ||
<p> | ||
We use essential cookies to remember your preferences (such as dark/light mode). No | ||
tracking cookies are used. | ||
</p> | ||
</div> | ||
</div> | ||
</Card.Content> | ||
</Card.Root> | ||
</div> |