import React from "react"
import { Metadata } from "next"
import DeleteAccountContainer from "./section/DeleteAccountContainer"

export const metadata: Metadata = {
  title: "Delete Account",
  description: "Delete your account permanently",
}

export default function DeleteAccountPage() {
  return <DeleteAccountContainer />
}
