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": {}, + }, +};