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
10 changes: 7 additions & 3 deletions apps/nameai.io/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,13 @@ export default function RootLayout({
<div className="flex flex-row items-center justify-between md:gap-5 h-[40px]">
<div className="items-center justify-center flex gap-2">
{demoLinks.map((link) => (
<Button key={link.text} variant="ghost" asChild>
<Link href={link.href}>{link.text}</Link>
</Button>
<Link
key={link.text}
href={link.href}
className="nk-button nk-transition nk-text-base nk-rounded-lg nk-border nk-font-medium nk-inline-flex nk-gap-2 nk-items-center nk-whitespace-nowrap nk-underline-none nk-text-black nk-border-transparent hover:nk-bg-black/5 nk-py-2 nk-px-4"
>
{link.text}
</Link>
))}
</div>
</div>
Expand Down
8 changes: 5 additions & 3 deletions apps/nameai.io/next.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
experimental: {
ppr: true,
},
// PPR (Partial Prerendering) is only available in canary versions
// Disabled since we're using stable Next.js 15.1.9
// experimental: {
// ppr: true,
// },
};

export default nextConfig;
8 changes: 4 additions & 4 deletions apps/nameai.io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"@namehash/nameai": "workspace:*",
"@namehash/namekit-react": "workspace:*",
"classcat": "5.0.5",
"next": "15.1.1-canary.5",
"react": "19.0.0",
"react-dom": "19.0.0",
"next": "15.1.11",
"react": "19.0.1",
"react-dom": "19.0.1",
"react-wrap-balancer": "1.1.1",
"sonner": "1.5.0",
"tweakpane": "4.0.5"
Expand All @@ -29,7 +29,7 @@
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"eslint": "8.57.1",
"eslint-config-next": "14.2.14",
"eslint-config-next": "15.1.9",
"postcss": "8.4.47",
"tailwind-scrollbar-hide": "1.1.7",
"tailwindcss": "3.4.13",
Expand Down
3 changes: 3 additions & 0 deletions apps/namekit.io/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

import { NameKitPage } from "@/components/pages/namekit";

// Force dynamic rendering to avoid SSR issues with browser APIs
export const dynamic = 'force-dynamic';

export default function Home() {
return (
<div>
Expand Down
Loading