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
4 changes: 1 addition & 3 deletions app/globals.css
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "tailwindcss";
4 changes: 2 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ export default function Page() {
return (
<main className="mx-auto max-w-2xl px-6 py-16">
<div className="text-xs uppercase tracking-wider text-neutral-500">Etymolt · Next.js example</div>
<h1 className="mt-2 text-3xl font-semibold tracking-tight">Check a brand name.</h1>
<h1 className="mt-2 text-3xl font-semibold tracking-tight">Naming, attested.</h1>
<p className="mt-3 text-neutral-600">
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.
</p>
<div className="mt-8">
<VerifyForm />
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
6 changes: 5 additions & 1 deletion postcss.config.mjs
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
export default { plugins: { tailwindcss: {}, autoprefixer: {} } };
export default {
plugins: {
"@tailwindcss/postcss": {},
},
};
Loading