diff --git a/src/app/(app)/course/layout.tsx b/src/app/(app)/course/layout.tsx
deleted file mode 100644
index 92a9e1c..0000000
--- a/src/app/(app)/course/layout.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import Navbar from "@/components/Navbar"
-import {Separator} from "@/components/ui/separator"
-import Footer from "@/components/Footer"
-
-export default function CourseLayout({
- children,
-}: {
- children: React.ReactNode;
-}) {
- return (
- <>
- {children}
-
-
- >
- )
-}
diff --git a/src/app/(app)/layout.tsx b/src/app/(app)/layout.tsx
new file mode 100644
index 0000000..ca05d29
--- /dev/null
+++ b/src/app/(app)/layout.tsx
@@ -0,0 +1,19 @@
+import { Separator } from "@/components/ui/separator"
+import Footer from "@/components/Footer"
+import { AuthUserContextProvider } from "@/app/(providers)/auth-user-provider"
+
+export default function CourseLayout({
+ children,
+}: {
+ children: React.ReactNode;
+}) {
+ return (
+ <>
+
+ {children}
+
+
+
+ >
+ )
+}
diff --git a/src/app/(marketing)/layout.tsx b/src/app/(marketing)/layout.tsx
new file mode 100644
index 0000000..94664cd
--- /dev/null
+++ b/src/app/(marketing)/layout.tsx
@@ -0,0 +1,19 @@
+import { Separator } from "@/components/ui/separator"
+import Footer from "@/components/Footer"
+import NavbarPlain from "@/components/NavbarPlain"
+
+export default function PrivacyLayout({
+ children,
+}: {
+ children: React.ReactNode;
+}) {
+ return (
+ <>
+
+
+ {children}
+
+
+ >
+ )
+}
diff --git a/src/app/(marketing)/privacy/page.tsx b/src/app/(marketing)/privacy/page.tsx
new file mode 100644
index 0000000..8d20886
--- /dev/null
+++ b/src/app/(marketing)/privacy/page.tsx
@@ -0,0 +1,50 @@
+import PageView from "@/components/views/Page"
+import { Text } from "@/components/ui/text"
+import { Separator } from "@/components/ui/separator"
+
+const PrivacyPolicyPage = () => {
+ return (
+
+
+
+
+ Disclosure
+
+
+ Include this disclosure in the syllabus of courses using Study
+ Buddy.
+
+
+
+
+
+ As part of this course, you will have the option to utilize Study
+ Buddy, an application designed to facilitate student pairing for
+ collaborative learning activities.
+
+
+ Your personal information, including your name, Student ID, and
+ course grades, will be collected and used under the authority of
+ section 26(c) of the British Columbia Freedom of Information and
+ Protection of Privacy Act (FIPPA).
+
+
+ By agreeing to use Study Buddy, you authorize the application to
+ access this information from Canvas solely for the purpose of
+ matching you with compatible study partners. The information
+ collected will not be used for any other purpose or shared with
+ third parties external to the University.
+
+
+ Your participation in using Study Buddy is entirely voluntary. If
+ you have any questions or concerns about the collection, use, or
+ disclosure of your personal information, please contact Dr. Bowen
+ Hui at bowen.hui[at]ubc[dot]ca.
+
+