diff --git a/resources/css/app.css b/resources/css/app.css index bd6213e..b5c61c9 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -1,3 +1,3 @@ @tailwind base; @tailwind components; -@tailwind utilities; \ No newline at end of file +@tailwind utilities; diff --git a/resources/views/contact.blade.php b/resources/views/contact.blade.php new file mode 100644 index 0000000..a1869d8 --- /dev/null +++ b/resources/views/contact.blade.php @@ -0,0 +1,107 @@ +@extends('layout') + +@section('content') + + +
+
+
+
+

Contact Us

+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
+
+ + +@endsection \ No newline at end of file diff --git a/resources/views/partials/navbar.blade.php b/resources/views/partials/navbar.blade.php index 2f08c26..79f6c5f 100644 --- a/resources/views/partials/navbar.blade.php +++ b/resources/views/partials/navbar.blade.php @@ -34,6 +34,10 @@
  • Recipes
  • + +
  • + Contact +
  • diff --git a/routes/web.php b/routes/web.php index 5b3179e..998331f 100644 --- a/routes/web.php +++ b/routes/web.php @@ -202,4 +202,8 @@ Route::get('/recipes', function() { ], ] ]); +}); + +Route::get('/contact', function () { + return view('contact'); }); \ No newline at end of file