"use client";
import { useState } from "react";
export default function CounterPage() {
const [count, setCount] = useState(0);
return (
<div>
<h1>Counter (Client Page)</h1>
<p>This page is a client component with interactive state.</p>
<button onClick={() => setCount((c) => c + 1)}>Count: {count}</button>
</div>
);
}