新增vip功能

This commit is contained in:
yezian 2024-01-22 19:12:54 +08:00
parent 25a1089bc1
commit 9725aaee6c
1 changed files with 9 additions and 0 deletions

9
app/vip/page.jsx Normal file
View File

@ -0,0 +1,9 @@
"use client";
import React from "react";
import { generateSignature } from "@/utils/crypto";
import webviewBaseRequest from "@/utils/webviewBaseRequest";
export default function Vip() {
return <section className="flex flex-col container">Vip</section>;
}