diff --git a/client/src/components/Product/Product.scss b/client/src/components/Product/Product.scss
new file mode 100644
index 0000000..e69de29
diff --git a/client/src/components/Product/Product.tsx b/client/src/components/Product/Product.tsx
new file mode 100644
index 0000000..e69de29
diff --git a/client/src/components/User/User.scss b/client/src/components/User/User.scss
new file mode 100644
index 0000000..e69de29
diff --git a/client/src/components/User/User.tsx b/client/src/components/User/User.tsx
new file mode 100644
index 0000000..e69de29
diff --git a/client/src/util/types.ts b/client/src/util/types.ts
index 1b98444..882efe6 100644
--- a/client/src/util/types.ts
+++ b/client/src/util/types.ts
@@ -1,7 +1,10 @@
import { Session, SupabaseClient, User } from "@supabase/supabase-js";
+import { FC } from "react";
export interface AppState {
supabase?: SupabaseClient
session?: Session
user?: User
-}
\ No newline at end of file
+}
+
+export type AuthFormType = FC<{ format: string }>
\ No newline at end of file