diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index c7bb0a8..a6ddb56 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -764,8 +764,12 @@ Responsive Codes } /* about us page css */ .about-banner-section{ - padding: 3rem 6rem; - background: #0A2849; + background: url('../images/aboutus-banner.png'); + padding: 6rem; + height: 40vh; + background-repeat: no-repeat; + background-size: cover!important; + position: relative; } .who-we-section{ padding: 3rem 6rem; @@ -812,8 +816,12 @@ Responsive Codes } /* contact us css */ .contact-us-section{ - padding: 3rem 6rem; - background: #0A2849; + background: url('../images/contact-us-banner.png'); + padding: 6rem; + height: 40vh; + background-repeat: no-repeat; + background-size: cover!important; + position: relative; } .get-in-touch-section{ padding: 3rem 6rem; @@ -936,16 +944,21 @@ Responsive Codes height: 40vh; background-repeat: no-repeat; background-size: cover!important; + position: relative; } -.chef-banner-content h2{ +.chef-banner-content h2, +.about-banner-content h2, +.contact-banner-content h2{ font-weight: 700; - font-size: 80px; + font-size: 60px; line-height: 3rem; color: #FFFFFF; text-align: center; - margin-top: 4rem; - margin-bottom: 25px; text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25); + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); } .chef-banner-content p{ font-weight: 500; diff --git a/public/frontend/images/aboutus-banner.png b/public/frontend/images/aboutus-banner.png new file mode 100644 index 0000000..16422bc Binary files /dev/null and b/public/frontend/images/aboutus-banner.png differ diff --git a/public/frontend/images/contact-us-banner.png b/public/frontend/images/contact-us-banner.png new file mode 100644 index 0000000..f32d7e4 Binary files /dev/null and b/public/frontend/images/contact-us-banner.png differ diff --git a/public/frontend/images/need-chef.png b/public/frontend/images/need-chef.png index 33beb0c..03670d8 100644 Binary files a/public/frontend/images/need-chef.png and b/public/frontend/images/need-chef.png differ diff --git a/resources/views/about.blade.php b/resources/views/about.blade.php index bde30fc..a2be4b1 100644 --- a/resources/views/about.blade.php +++ b/resources/views/about.blade.php @@ -6,10 +6,13 @@
+
+

About us

+
diff --git a/resources/views/contact.blade.php b/resources/views/contact.blade.php index 2d196e9..5e4b5ff 100644 --- a/resources/views/contact.blade.php +++ b/resources/views/contact.blade.php @@ -7,10 +7,13 @@
+
+

Contact us

+
diff --git a/resources/views/layout/app.blade.php b/resources/views/layout/app.blade.php index fb437a4..efb126a 100644 --- a/resources/views/layout/app.blade.php +++ b/resources/views/layout/app.blade.php @@ -47,7 +47,7 @@