import Link from "next/link"; import { BackIcon } from "@/ui/Icons"; import { CTAButton } from "@/ui/elements"; import Header from "@/ui/Layout/Header"; export default function Account() { const account = { name: "John Doe", }; return ( <>
back
Account
Manage your account's settings.
{account.name}
Plan
You are using open-source version. Subscribe to get access to hosted cognee with your data!
Select a plan
); }