cheatingchelsea/src/app/page.tsx
Derek Slenk b7bcc6e69b Refactor footer into reusable component
- Create Footer component with consistent styling and angrymichigander.com link
- Replace inline footers in all pages (home, long-story, gallery) with Footer component
- Ensure consistent footer content across the entire site
- Add proper link styling with hover effects and security attributes
2025-06-30 09:59:59 -04:00

183 lines
8 KiB
TypeScript

import { Button } from '@/components/ui/button';
import {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
} from '@/components/ui/card';
import Link from 'next/link';
import { Footer } from '@/components/Footer';
export default function Home() {
return (
<div className="flex flex-col min-h-screen bg-background text-foreground">
<main className="flex-grow">
<div className="container mx-auto max-w-4xl py-12 px-4 sm:px-6 lg:px-8">
<header className="text-center mb-12">
<h1 className="text-4xl sm:text-5xl font-extrabold tracking-tight text-primary font-headline">
Cheating Chelsea Exposed
</h1>
<p className="mt-4 text-xl text-muted-foreground">
Exposing the harm caused by Chelsea Smallwood and &quot;The Other
Woman and the Wife&quot; group.
</p>
</header>
<div className="space-y-8">
<Card>
<CardHeader>
<h2 className="text-2xl font-bold font-headline leading-none tracking-tight">
Who is Chelsea Smallwood?
</h2>
</CardHeader>
<CardContent className="space-y-4 text-lg text-card-foreground">
<p>
Chelsea Smallwood is the creator and leader of a group known
as &quot;The Other Woman and the Wife.&quot; Marketed as a space for
female empowerment, this group has a darker side. It allegedly
encourages and normalizes infidelity, creating a platform
where individuals share intimate details of their affairs.
</p>
<p>
While claiming to support women, the group&apos;s activities have led
to significant emotional distress and real-world harm for
those targeted by its members. The platform has been used to
share private information without consent, blurring the lines
between empowerment and exploitation.
</p>
</CardContent>
</Card>
<Card>
<CardHeader>
<h2 className="text-2xl font-bold font-headline leading-none tracking-tight">
The Harm Caused: Kristen Jacobs&apos; Story
</h2>
</CardHeader>
<CardContent className="space-y-4 text-lg text-card-foreground">
<p>
Kristen Jacobs is one of the victims of the activities
fostered by Chelsea&apos;s group. She discovered that her private
text messages and personal photos were being shared and
mocked within &quot;The Other Woman and the Wife.&quot; This was not
just a private matter; this sensitive content was allegedly
used to promote the group and Chelsea&apos;s brand, turning
Kristen&apos;s personal pain into a tool for profit and
recruitment.
</p>
<p>
This gross violation of privacy constitutes online harassment
and has had a severe impact on Kristen&apos;s life. It is a stark
example of how the group&apos;s rhetoric of &quot;empowerment&quot; can be
twisted into a weapon for causing harm, profiting from
others&apos; suffering, and fostering a culture of cyberbullying.
</p>
</CardContent>
</Card>
<div className="flex flex-wrap justify-center items-center gap-4 my-8">
<Button asChild variant="outline" size="lg">
<Link href="/long-story">Read The Full Story &raquo;</Link>
</Button>
<Button asChild variant="outline" size="lg">
<Link href="/gallery">View Video Gallery &raquo;</Link>
</Button>
</div>
<Card className="border-2 border-destructive shadow-lg">
<CardHeader className="text-center">
<h2 className="text-3xl font-bold font-headline text-primary leading-none tracking-tight">
Stand With Kristen
</h2>
<CardDescription className="text-lg pt-2">
Help her fight back against online harassment and
exploitation.
</CardDescription>
</CardHeader>
<CardContent>
<p className="text-center text-lg text-card-foreground">
Kristen is taking a stand to hold Chelsea Smallwood and her
organization accountable. This is not just a personal battle;
it&apos;s a fight against the unethical use of private
information and for-profit online harassment. Your support can
help her cover legal fees and bring awareness to this
important issue.
</p>
</CardContent>
<CardFooter className="flex justify-center pt-4">
<Button asChild size="lg" variant="destructive">
<a
href="https://www.gofundme.com/f/help-kristen-stand-against-online-harassment-for-profit"
target="_blank"
rel="noopener noreferrer"
className="text-xl font-bold"
>
Support Kristen&apos;s GoFundMe
</a>
</Button>
</CardFooter>
</Card>
<Card>
<CardHeader>
<h2 className="text-2xl font-bold font-headline leading-none tracking-tight">
Sources and Evidence
</h2>
</CardHeader>
<CardContent>
<ul className="list-disc space-y-2 pl-5 text-base text-card-foreground">
<li>
<a
href="https://www.themarysue.com/what-i-can-only-describe-as-pure-degeneracy-proud-cheater-sued-for-allegedly-using-cheating-coach-business-to-bully-betrayed-spouses/"
className="text-primary hover:underline"
target="_blank"
rel="noopener noreferrer"
>
The Mary Sue: &quot;Proud Cheater Sued for Allegedly Using
Cheating Coach Business to Bully Betrayed Spouses&quot;
</a>
</li>
<li>
<a
href="https://www.scribd.com/document/808219056/The-Other-Woman-and-The-Wife-LLC-vs-Kristen-Jacobs-Lawsuit-Countersuit"
className="text-primary hover:underline"
target="_blank"
rel="noopener noreferrer"
>
The Other Woman and the Wife LLC v. Kristen Jacobs - Miami
County, Ohio Common Pleas Court (Case No. 24-498)
</a>
</li>
<li>
<a
href="https://www.gofundme.com/f/help-kristen-stand-against-online-harassment-for-profit"
className="text-primary hover:underline"
target="_blank"
rel="noopener noreferrer"
>
Kristen Jacobs&apos; GoFundMe Campaign
</a>
</li>
<li>
<a
href="https://redcircle.com/shows/theotherwomanandthewife"
className="text-primary hover:underline"
target="_blank"
rel="noopener noreferrer"
>
The Other Woman and the Wife Podcast
</a>
</li>
</ul>
</CardContent>
</Card>
</div>
</div>
</main>
<Footer />
</div>
);
}