diff --git a/docker-compose.yaml b/docker-compose.yaml
index 4682f1e..6ea828c 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -2,7 +2,7 @@ services:
db:
container_name: recipes_postgres
image: docker.io/library/postgres:17
- restart: always
+ # restart: always
env_file:
- .env
environment:
diff --git a/frontend/src/App.css b/frontend/src/App.css
index 2eb7092..b342a6f 100644
--- a/frontend/src/App.css
+++ b/frontend/src/App.css
@@ -6,6 +6,6 @@
@apply mx-auto text-center;
}
-page-outer {
+.page-outer {
@apply bg-amber-100 border border-amber-200 rounded-bl-lg rounded-br-lg p-6 md:p-8 lg:p-10 max-w-6xl mx-auto font-serif;
}
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index c1daca6..1ef37fe 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -1,8 +1,8 @@
import "./App.css";
-import Cookbook from "./pages/Cookbook.tsx";
+import Index from "./pages/Index.tsx";
import RecipePage from "./pages/RecipePage.tsx";
import AddRecipe from "./pages/AddRecipe.tsx";
-import Search from "./pages/Search.tsx"
+import About from "./pages/About.tsx"
import RecipeBookTabs from "./components/RecipeBookTabs.tsx";
import { Routes, Route } from "react-router-dom";
@@ -13,10 +13,10 @@ function App() {