Skip to content
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: 0 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Image from "next/image";
import Hero from "../components/Hero";
import HowItWorksSection from "../components/HowItWorksSection";
import UseCasesSection from "../components/UseCasesSection";
Expand Down
8 changes: 4 additions & 4 deletions components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ const CodeWindow: React.FC = () => {
{/* Code area */}
<div className="bg-gray-950 text-gray-100 text-[13px] leading-6 p-5 overflow-auto">
<pre className="font-mono whitespace-pre text-[13px]">
<span className="text-[#FF9900]">// Moderate Request</span>{"\n"}
<span className="text-[#FF9900]">{/* Moderate Request */}</span>{"\n"}
{`POST /moderate/
Headers: X-API-Key: your-strong-secret-key
Body: {
"text_to_moderate": "This is some text to check"
}

`}
<span className="text-[#FF9900]">// Response</span>{"\n"}
<span className="text-[#FF9900]">{/* Response */}</span>{"\n"}
{`{
"status": true,
"result": {
Expand Down Expand Up @@ -61,7 +61,7 @@ const Hero: React.FC = () => {
</div>

<h1 className="text-4xl sm:text-5xl lg:text-6xl font-extrabold text-gray-900 tracking-tight">
We're here to
We&apos;re here to
<br />
Define your
<br />
Expand Down Expand Up @@ -90,7 +90,7 @@ const Hero: React.FC = () => {
</svg>

<p className="text-gray-600 text-base sm:text-lg leading-relaxed max-w-xl">
Let's make your rules easy to enforce and policies clear using the Moderato API and AI-powered tools for managing content policies.
Let&apos;s make your rules easy to enforce and policies clear using the Moderato API and AI-powered tools for managing content policies.
</p>

<div className="mt-8 flex flex-col sm:flex-row gap-4">
Expand Down
Loading