From a83a6d64c0711e9ab47d1da6f82f16c2eeed3cd6 Mon Sep 17 00:00:00 2001 From: James Wyndham Date: Thu, 22 Feb 2024 12:22:16 +0800 Subject: [PATCH] feature - added better accounts and tested subscription with cancellation --- Frontend/app/(auth)/account/page.tsx | 12 +++++++++--- Frontend/components/Header.tsx | 5 +++-- Frontend/components/Navigation.tsx | 9 +++++++-- Frontend/sections/AccountContent.tsx | 8 +++++--- 4 files changed, 24 insertions(+), 10 deletions(-) diff --git a/Frontend/app/(auth)/account/page.tsx b/Frontend/app/(auth)/account/page.tsx index 492ca7a..16a28f2 100644 --- a/Frontend/app/(auth)/account/page.tsx +++ b/Frontend/app/(auth)/account/page.tsx @@ -6,6 +6,9 @@ import { User } from "@/types"; import AccountContent from "@/sections/AccountContent"; import { redirect } from "next/navigation"; import pb from "@/lib/pocketbase"; +import Background from "@/components/Utilities/Background"; +import Footer from "@/components/Footer"; +import Spacer from "@/components/Utilities/Spacer"; export default async function AccountPage() { const user = (await getUserFromCookie(cookies())) as User; @@ -20,9 +23,12 @@ export default async function AccountPage() { role="main" className="h-full flex flex-col min-h-screen mx-auto w-screen overflow-hidden bg-base-100 " > - } /> - - + + } /> + + +