setInput({...input, email: e.target.value})} />
diff --git a/client/src/components/Auth/authExtraText.tsx b/client/src/components/Auth/authExtraText.tsx
new file mode 100644
index 0000000..beee7b0
--- /dev/null
+++ b/client/src/components/Auth/authExtraText.tsx
@@ -0,0 +1,15 @@
+export const loginHTML = (
+ <>
+
Welcome back!
+
It's great to see you again.
+
Please enter your credentials below to login:
+ >
+)
+
+export const registerHTML = (
+ <>
+
Hi there!
+
Thank you so much for your interest in the site!
+
Please use the form below to register.
+ >
+)
\ No newline at end of file
diff --git a/client/src/components/Content/Contact.tsx b/client/src/components/Content/Contact.tsx
new file mode 100644
index 0000000..cd386ee
--- /dev/null
+++ b/client/src/components/Content/Contact.tsx
@@ -0,0 +1,26 @@
+import Gallery from "../_ui/Gallery/Gallery";
+import Page from "../_ui/Page/Page";
+
+export default function Contact() {
+ return (
+
+ Something you wanted to talk to us about?
+
+ We'd love to hear it!
+ You can reach me at any of these social media outlets:
+
+
+ Wew
+ Wew
+ Wew
+
+
+ You can also use the following form to reach out:
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/client/src/components/Content/Philosophy.tsx b/client/src/components/Content/Philosophy.tsx
new file mode 100644
index 0000000..bef4023
--- /dev/null
+++ b/client/src/components/Content/Philosophy.tsx
@@ -0,0 +1,12 @@
+import Page from "../_ui/Page/Page";
+
+export default function Philosophy() {
+ return (
+
+ The Express Spices Philosophy
+
+ Things and stuff and things and stuff and things and stuff and things and stuff and things and stuff and things.
+ Furthermore, things and stuff and things and stuff and things and stuff and things and stuff and things and stuff and things.
+
+ )
+}
\ No newline at end of file
diff --git a/client/src/components/Product/AllProducts.tsx b/client/src/components/Product/AllProducts.tsx
index 42b3c4f..7f3882e 100644
--- a/client/src/components/Product/AllProducts.tsx
+++ b/client/src/components/Product/AllProducts.tsx
@@ -2,13 +2,14 @@ import { useEffect, useState } from "react"
import { v4 } from "uuid";
import { getAllProducts } from "../../util/apiUtils";
import { ProductModel } from "../../util/types";
+import Card from "../_ui/Card/Card";
import Gallery from "../_ui/Gallery/Gallery";
import Page from "../_ui/Page/Page";
import ProductCard from "./ProductCard";
export default function AllProducts() {
const [productData, setProductData] = useState
();
- const [view, setView] = useState(Loading...
);
+ const [view, setView] = useState(Loading...
);
useEffect(() => {
getAllProducts()
@@ -23,7 +24,26 @@ export default function AllProducts() {
useEffect(() => {
setView(
- All Products!
+ Product Catalog
+
+
+
+
Filter results by:
+
+
+
+
+
+
{
productData && productData.map((data: ProductModel) => {