Skip to content

Commit 81261ea

Browse files
committed
Create Disclaimer.tsx
1 parent 03b5b62 commit 81261ea

1 file changed

Lines changed: 83 additions & 0 deletions

File tree

src/pages/Disclaimer.tsx

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
import { motion } from 'framer-motion';
2+
import { ArrowLeft, AlertTriangle, Info, FileWarning } from 'lucide-react';
3+
import { useNavigate } from 'react-router-dom';
4+
import { Button } from '@/components/ui/button';
5+
6+
const Disclaimer = () => {
7+
const navigate = useNavigate();
8+
9+
return (
10+
<div className="min-h-screen bg-background text-foreground relative overflow-hidden">
11+
<div className="fixed inset-0 grid-bg opacity-30 pointer-events-none" />
12+
13+
<main className="container mx-auto px-6 py-12 relative z-10 max-w-4xl">
14+
<Button
15+
variant="ghost"
16+
onClick={() => navigate('/')}
17+
className="mb-8 gap-2 hover:bg-secondary/50"
18+
>
19+
<ArrowLeft className="w-4 h-4" /> Back to Home
20+
</Button>
21+
22+
<motion.div
23+
initial={{ opacity: 0, y: 20 }}
24+
animate={{ opacity: 1, y: 0 }}
25+
className="space-y-12"
26+
>
27+
<div className="text-center space-y-4">
28+
<h1 className="text-4xl md:text-5xl font-display font-bold">Disclaimer</h1>
29+
<p className="text-xl text-muted-foreground">Last updated: January 2026</p>
30+
</div>
31+
32+
<div className="prose prose-invert max-w-none space-y-8">
33+
<section className="space-y-4">
34+
<div className="flex items-center gap-3 text-primary">
35+
<AlertTriangle className="w-6 h-6" />
36+
<h2 className="text-2xl font-bold m-0">1. Accuracy of AI Content</h2>
37+
</div>
38+
<p className="text-muted-foreground leading-relaxed">
39+
RAW.AI provides AI-driven text humanization and detection services. While we strive for the highest possible accuracy and natural-sounding output, the nature of Large Language Models (LLMs) means that results can vary. We do not guarantee that humanized text will always bypass every AI detector or that AI detection will be 100% accurate.
40+
</p>
41+
</section>
42+
43+
<section className="space-y-4">
44+
<div className="flex items-center gap-3 text-primary">
45+
<Info className="w-6 h-6" />
46+
<h2 className="text-2xl font-bold m-0">2. Not Professional Advice</h2>
47+
</div>
48+
<p className="text-muted-foreground leading-relaxed">
49+
The content generated or processed by RAW.AI is for informational and creative purposes only. It does not constitute professional, legal, or academic advice. Users are responsible for verifying the factual accuracy of any content produced using our tools.
50+
</p>
51+
</section>
52+
53+
<section className="space-y-4">
54+
<div className="flex items-center gap-3 text-primary">
55+
<FileWarning className="w-6 h-6" />
56+
<h2 className="text-2xl font-bold m-0">3. Ethical and Academic Use</h2>
57+
</div>
58+
<p className="text-muted-foreground leading-relaxed">
59+
RAW.AI does not encourage or condone academic dishonesty or plagiarism. Our tools are designed to help writers improve their style and help researchers understand AI patterns. Users are solely responsible for ensuring their use of our service complies with their local laws and institutional policies (e.g., university honor codes).
60+
</p>
61+
</section>
62+
63+
<section className="space-y-4">
64+
<div className="flex items-center gap-3 text-primary">
65+
<Info className="w-6 h-6" />
66+
<h2 className="text-2xl font-bold m-0">4. External Links</h2>
67+
</div>
68+
<p className="text-muted-foreground leading-relaxed">
69+
Our website may contain links to external sites that are not operated by us. Please be aware that we have no control over the content and practices of these sites, and cannot accept responsibility or liability for their respective privacy policies.
70+
</p>
71+
</section>
72+
</div>
73+
74+
<div className="pt-8 border-t border-border/30 text-center text-muted-foreground">
75+
<p>Questions? Contact us at arshverma.dev@gmail.com</p>
76+
</div>
77+
</motion.div>
78+
</main>
79+
</div>
80+
);
81+
};
82+
83+
export default Disclaimer;

0 commit comments

Comments
 (0)