import UserSettings from "./UserSettings"; import PlanSettings from "./PlanSettings"; import { checkAuth, getUserAuth } from "@/lib/auth/utils"; import { getUserSubscriptionPlan } from "@/lib/stripe/subscription"; export default async function Account() { await checkAuth(); const { session } = await getUserAuth(); const subscriptionPlan = await getUserSubscriptionPlan(); return (

Account

); }