From 7f0e3e0f74a1ee77cf847bb8a4098ba8adb0c106 Mon Sep 17 00:00:00 2001 From: tattarw Date: Wed, 10 Jun 2026 08:39:15 +0000 Subject: [PATCH] polish: voice locks + Tailwind 4 - app/page.tsx: hero now 'Naming, attested.' (closer) with subtitle 'The fact-check layer for LLM-generated names.' (canonical tagline). Brings the flagship example into voice alignment with the rest of the brand. - app/globals.css: collapse Tailwind 3 directives to v4 single import (@import "tailwindcss"). - postcss.config.mjs: use @tailwindcss/postcss plugin (v4 syntax). autoprefixer no longer required. - package.json: bump tailwindcss to ^4, add @tailwindcss/postcss, drop autoprefixer. Closes board item #130. --- app/globals.css | 4 +--- app/page.tsx | 4 ++-- package.json | 2 +- postcss.config.mjs | 6 +++++- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/app/globals.css b/app/globals.css index b5c61c9..f1d8c73 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,3 +1 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; +@import "tailwindcss"; diff --git a/app/page.tsx b/app/page.tsx index d1e9534..747662d 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -4,9 +4,9 @@ export default function Page() { return (
Etymolt ยท Next.js example
-

Check a brand name.

+

Naming, attested.

- Type a candidate name. Etymolt returns a signed verdict across five axes: trademark, domain, cultural signal, sound, pronunciation. + The fact-check layer for LLM-generated names. Type a candidate. Etymolt returns a signed verdict across five axes: trademark, domain, cultural signal, sound, pronunciation.

diff --git a/package.json b/package.json index b36ae6c..f2bf5cb 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,6 @@ "typescript": "^5.5.0", "tailwindcss": "^4.0.0", "postcss": "^8.4.0", - "autoprefixer": "^10.4.0" + "@tailwindcss/postcss": "^4.0.0" } } diff --git a/postcss.config.mjs b/postcss.config.mjs index 99417eb..c2ddf74 100644 --- a/postcss.config.mjs +++ b/postcss.config.mjs @@ -1 +1,5 @@ -export default { plugins: { tailwindcss: {}, autoprefixer: {} } }; +export default { + plugins: { + "@tailwindcss/postcss": {}, + }, +};