惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
The Cloudflare Blog
量子位
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
MyScale Blog
MyScale Blog
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
D
DataBreaches.Net
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
U
Unit 42
博客园 - 聂微东
有赞技术团队
有赞技术团队
A
About on SuperTechFans

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I Built a Free AI Tools Website With Next.js and Groq...
Hadi Rizvi · 2026-05-06 · via DEV Community

Hadi Rizvi

I Built a Free AI Writing Tools Platform in a Weekend — Here’s Exactly How

Last weekend, I built and deployed a completely free AI writing tools platform called Textora. There are no paywalls, no word limits, and no account required.

Here’s a clear breakdown of what I built, how I built it, and what I learned along the way.


The Problem

Most AI writing tools today come with frustrating limitations:

  • QuillBot restricts free paraphrasing to around 125 words
  • Many “AI humanizers” charge $15–$20 per month
  • Several tools require signups just to try basic features

I wanted to build something genuinely useful — fully free, unlimited, and easy to access.


The Result

textora.org — a platform with 15 free AI writing tools
Built using Next.js 14, powered by the Groq API, and deployed at no cost


Tech Stack Breakdown

Framework: Next.js 14 (App Router + TypeScript)

I used the App Router because it provides a clean separation of concerns:

  • Server Components for static pages and SEO
  • Client Components for interactive tools
  • API Routes for all AI processing

This structure made the project easier to organize and scale.


AI Layer: Groq API (Llama 3.1 8B Instant)

This was one of the most effective choices in the project.

  • Response times average around 2–3 seconds
  • The free tier is generous
  • Output quality is reliable for writing tasks

Here’s the base pattern used across all AI tools:

import Groq from "groq-sdk"

const groq = new Groq({
  apiKey: process.env.GROQ_API_KEY
})

export async function POST(req: Request) {
  const { text, tone } = await req.json()

  const completion = await groq.chat.completions.create({
    messages: [
      {
        role: "user",
        content: `Rewrite the following text to sound natural and human. 
Tone: ${tone}. Return only the rewritten text:

${text}`
      }
    ],
    model: "llama-3.1-8b-instant",
    temperature: 0.7,
    max_tokens: 2048,
  })

  const result = completion.choices[0]?.message?.content || ""

  return Response.json({ result })
}

Enter fullscreen mode Exit fullscreen mode

Each tool follows this same structure, with only the prompt changing.


Styling: Tailwind CSS + Custom Design System

I created a simple but consistent design system:

  • Indigo as the primary accent
  • Deep navy for darker sections
  • A clean white base

CSS variables and an extended Tailwind configuration were used for reusable design tokens.


Storage: Vercel Blob (for Blog System)

  • Blog posts are stored as JSON in private Blob storage
  • A full admin dashboard is built with NextAuth and Google OAuth
  • CRUD operations are handled through API routes

Rate Limiting: Upstash Redis

To prevent abuse:

import { Ratelimit } from "@upstash/ratelimit"
import { Redis } from "@upstash/redis"

const ratelimit = new Ratelimit({
  redis: Redis.fromEnv(),
  limiter: Ratelimit.slidingWindow(10, "1h"),
})

const ip = req.headers.get("x-forwarded-for") || "anonymous"
const { success } = await ratelimit.limit(ip)

if (!success) {
  return Response.json(
    { error: "Rate limit exceeded" },
    { status: 429 }
  )
}

Enter fullscreen mode Exit fullscreen mode

This approach is simple and effective.


Deployment: Vercel (Free Tier)

  • Zero-configuration deployment for Next.js
  • Custom domain via Namecheap
  • Automatic SSL

Total infrastructure cost: $0


The 15 Tools

AI-Powered Tools

  • AI Humanizer
  • AI Detector
  • Paraphraser
  • Grammar Checker
  • Text Summarizer
  • Sentence Rewriter
  • Email Writer
  • Blog Title Generator
  • Meta Description Generator
  • Passive to Active Voice Converter

Utility Tools (Frontend Only)

  • Word Counter
  • Character Counter
  • Case Converter
  • Reading Time Estimator
  • Text Cleaner

The frontend tools were straightforward to build.

The AI tools all use the same backend pattern, but prompt design made a significant difference in output quality.


What I’d Do Differently

1. Prompt Engineering Takes Time

Getting consistent output required more effort than expected.

  • Models often add extra text or formatting
  • You need to clearly define the expected output format every time

The grammar checker was particularly challenging, especially when trying to return structured error data reliably.


2. SEO Is Not a Quick Setup

This part took longer than anticipated.

Tasks included:

  • Building a dynamic sitemap (including blog posts)
  • Adding metadata for every page
  • Implementing JSON-LD structured data

SEO alone took nearly a full day.


Final Thoughts

  • You don’t need a large budget to build something useful
  • Iteration speed matters more than perfection
  • Well-crafted prompts are just as important as clean code

The platform is live at textora.org

All 15 tools are available with no login and no limits.


If you’re working on something similar or have questions about the stack, feel free to reach out.