diff --git a/src/components/footer/Footer.tsx b/src/components/footer/Footer.tsx
new file mode 100644
index 0000000..2768e7a
--- /dev/null
+++ b/src/components/footer/Footer.tsx
@@ -0,0 +1,11 @@
+import './footer.module.css'
+
+const Footer = () => {
+    return (
+        
+    )
+}
+
+export default Footer
diff --git a/src/components/footer/footer.module.css b/src/components/footer/footer.module.css
new file mode 100644
index 0000000..47409f3
--- /dev/null
+++ b/src/components/footer/footer.module.css
@@ -0,0 +1,3 @@
+footer {
+    padding: 20px;
+}
diff --git a/src/components/header/Header.tsx b/src/components/header/Header.tsx
new file mode 100644
index 0000000..14e6817
--- /dev/null
+++ b/src/components/header/Header.tsx
@@ -0,0 +1,27 @@
+import { useNavigate, useRouter } from '@tanstack/react-router'
+import { useAuth } from '../../auth'
+import classes from './header.module.css'
+
+const Header = () => {
+    const auth = useAuth()
+    const router = useRouter()
+    const navigate = useNavigate()
+
+    const onLogout = async () => {
+        auth.clearToken(async () => {
+            await router.invalidate()
+            await navigate({ to: '/login' })
+        })
+    }
+
+    return (
+        
+            Meals Made Easy
+            
+        
+    )
+}
+
+export default Header
diff --git a/src/components/header/header.module.css b/src/components/header/header.module.css
new file mode 100644
index 0000000..67308f5
--- /dev/null
+++ b/src/components/header/header.module.css
@@ -0,0 +1,11 @@
+header {
+    display: flex;
+    align-items: center;
+    justify-content: space-between;
+    background-color: var(--primary-red);
+    padding: 20px;
+}
+
+.meals-made-easy {
+    color: var(--primary-white);
+}
diff --git a/src/components/recipe-card/RecipeCard.tsx b/src/components/recipe-card/RecipeCard.tsx
index 04b977c..f550161 100644
--- a/src/components/recipe-card/RecipeCard.tsx
+++ b/src/components/recipe-card/RecipeCard.tsx
@@ -38,28 +38,40 @@ const RecipeCard = ({
                 />
             
             
-                
-                    
{title}
-                
-                
-                    
-                    {starCount}
-                
-                
-                    
-                    {ownerUsername}
-                
-                {isPublic ? (
-                    
-                ) : (
-                    
-                )}
+                
+                    
+                        
{title}
+                    
+                    
+                        
+                        {starCount}
+                    
+                
+                
+                    
+                        
+                        {ownerUsername}
+                    
+                    {isPublic ? (
+                        
+                    ) : (
+                        
+                    )}
+                
             Error: {error.message}
         }
     } else {
-        return data.content.map(view => (
-            
-        ))
+        return (
+            <>
+                Recipes
+                
+                    {data.content.map(view => (
+                        
+                    ))}
+                
+            >
+        )
     }
 }
 
diff --git a/src/pages/recipes/recipes.module.css b/src/pages/recipes/recipes.module.css
new file mode 100644
index 0000000..0f8e170
--- /dev/null
+++ b/src/pages/recipes/recipes.module.css
@@ -0,0 +1,23 @@
+.recipe-list {
+    display: grid;
+    justify-content: space-evenly;
+    gap: 20px;
+}
+
+@media screen and (min-width: 900px) {
+    .recipe-list {
+        grid-template-columns: repeat(2, 1fr);
+    }
+}
+
+@media screen and (min-width: 1300px) {
+    .recipe-list {
+        grid-template-columns: repeat(3, 1fr);
+    }
+}
+
+@media screen and (min-width: 1700px) {
+    .recipe-list {
+        grid-template-columns: repeat(4, 1fr);
+    }
+}
diff --git a/src/routes/__root.module.css b/src/routes/__root.module.css
new file mode 100644
index 0000000..2690c4c
--- /dev/null
+++ b/src/routes/__root.module.css
@@ -0,0 +1,3 @@
+main {
+    padding: 20px;
+}
diff --git a/src/routes/__root.tsx b/src/routes/__root.tsx
index 9da6112..044e0bb 100644
--- a/src/routes/__root.tsx
+++ b/src/routes/__root.tsx
@@ -1,39 +1,18 @@
-import {
-    Outlet,
-    createRootRouteWithContext,
-    useNavigate,
-    useRouter
-} from '@tanstack/react-router'
+import { Outlet, createRootRouteWithContext } from '@tanstack/react-router'
 import { TanStackRouterDevtools } from '@tanstack/router-devtools'
 import RouterContext from '../RouterContext'
-import { useAuth } from '../auth'
+import Header from '../components/header/Header'
+import Footer from '../components/footer/Footer'
+import './__root.module.css'
 
 const RootLayout = () => {
-    const auth = useAuth()
-    const router = useRouter()
-    const navigate = useNavigate()
-
-    const onLogout = async () => {
-        auth.clearToken(async () => {
-            await router.invalidate()
-            await navigate({ to: '/login' })
-        })
-    }
-
     return (
         <>
-            
-                Meals Made Easy
-                
-            
+            
             
                 
             
-            
+            
             
         >
     )