Categories

Sunday, April 28, 2024
#919814419350 therichposts@gmail.com
AngularAngular 16Angular 17Angular Ecommerce TemplatesAngular Templates

Build Foodie Restaurant Website in Angular 16 +

Build Foodie Restaurant Website in Angular 16 +

Hello friends, welcome back to my blog. Today this blog post will tell you Build Foodie Restaurant Website in Angular 16 +.

Live Demo
Build Foodie Restaurant Website in Angular 16 +
Build Foodie Restaurant Website in Angular 16 +

Angular 16 and Bootstrap 5 came and if you are new then you must check below two links:

  1. Angular16 Basic Tutorials
  2. Bootstrap 5
  3. Ecommerce Angular Templates

Friends now I proceed onwards and here is the working code snippet and please use carefully this to avoid the mistakes:

1. Firstly friends we need fresh angular 16 setup and for this we need to run below commands but if you already have angular 16 setup then you can avoid below commands. Secondly we should also have latest node version installed on our system:

npm install -g @angular/cli 

ng new angulardemo//Create new Angular Project 

cd angulardemo // Go inside the Angular Project Folder

2. Now friends we just need to add below code into angulardemo/src/app/app.component.html file to get final out on the web browser:

<app-header></app-header>
  <!-- section-1 top-banner -->
  <section id="home" class="banner_wrapper">

    <div class="container">
        <div class="row align-items-center">
            <div class="col-lg-5 text-center text-lg-start order-lg-1 order-2">
                <h1>It’s Not Just <span>Food</span>, It’s an <span>Experience</span></h1>
                
        <div class="mt-4">
            <a href="#menu"><button class="orange-btn" >Menu</button></a>
            <a href="#contact"><button class="main-btn ms-lg-4 mt-lg-0 mt-4" href="#contact" >Visit Us</button></a>

        </div>
    </div>
    <div class="col-lg-7 text-center order-lg-2 order-0 ">
        <img src="assets/images/food.png" style="float:right" class="img-fluid">
    </div>
    </div>

  <!-- section-2 counter -->
  <section id="counter">
    <section class="counter-section">
      <div class="container">
        <div class="row text-center">
          <div class="col-md-3 mb-lg-0 mb-md-0 mb-5">
            <h2>
              <span id="count1"></span>+
            </h2>
            <p>Happy Customers</p>
          </div>
          <div class="col-md-3 mb-lg-0 mb-md-0 mb-5">
            <h2>
              <span id="count2"></span>+
            </h2>
            <p>PHOTOS</p>
          </div>
          <div class="col-md-3 mb-lg-0 mb-md-0 mb-5">
            <h2>
              <span id="count3"></span>+
            </h2>
            <p>Dishes</p>
          </div>
          <div class="col-md-3 mb-lg-0 mb-md-0 mb-5">
            <h2>
              <span id="count4"></span>+
            </h2>
            <p>Stores</p>
          </div>
        </div>
      </div>
    </section>
  </section>

  <!-- section-3 about-->
  <section id="story">
    <div class="about-section wrapper">
      <div class="container">
        <div class="row align-items-center">
          <div class="col-lg-7 col-md-12 mb-lg-0 mb-5">
            <div class="card border-0">
              <img src="assets/images/About\about2.png" class="img-fluid">
            </div>
          </div>
          <div class="col-lg-5 col-md-12 text-sec">
           <h2 class="black">We pride ourselves on making real food from the best ingredients.</h2>
           <p>This prompted the burning desire for transparency in all of the ingredients we use. Everything we make is listed on the label and there’s no mystery ingredients or natural flavors to hide. We use the best of what Mother Nature has to offer.</p>
           <a href="#" target="_blank"><button class="orange-btn mt-4">Learn More</button></a>
          </div>
        </div>
      </div>
      <br><br>
      <div class="container food-type">
        <div class="row align-items-center">
          <div class="col-lg-5 col-md-12 text-sec mb-lg-0 mb-5">
           <h2 class="black">We make everything by hand with the best possible ingredients.</h2>
           <p>We believe that honesty and simplicity are the keys to meeting the challenges of everyday life. That's why we created a simple snack that we believe will help encourage you to live a healthier life. You'll be amazed at how the smallest changes can have the biggest impact. We want you to know that we promise to deliver the best we have to offer every time.</p>
           <ul class="list-unstyled py-3">
             <li>Fresh ingredients from Farm</li>
             <li>Quick and fast service</li>
             <li>Hygiene and sanitized</li>
           </ul> 
           <a href="#" target="_blank"><button class="orange-btn mt-4">Learn More</button></a>
          </div>
          <div class="col-lg-7 col-md-12">
            <div class="card border-0">
              <img src="assets/images/About\about1.png" class="img-fluid">
            </div>
          </div>
        </div>
      </div>
    </div>
  </section>


   <!-- menu section -->
  

<!-- Offer Section -->
<section id="menu" class="offers_wrapper">
    <div class="container">
        <div class="row">
            <div class="col-sm-12 text-center mb-4">
                <h2 class="black">Our Menu</h2>
                <p>There are many variations of food however,<br class="d-none d-md-block">
                  Tantalizing food can make a huge difference.</p>
            </div>
        </div>
        <div class="row">
            <div class="col-md-6 mb-4">
                <div class="card rounded-0" style="background-image: url('assets/images/menu/tandoori2.png')">
                    <div class="offer-text bg-black bg-opacity-50">
                        <h3 class="text-white">Tandoori chicken</h3>
                        <h5>$8.50 <del class="fst-italic opacity-75">$10.50</del></h5>
                        <a href="#" target="_blank" class="white-btn mt-3">Add TO Cart</a>
                    </div>
                </div>
            </div>
            <div class="col-md-6 mb-4">
                <div class="card rounded-0" style="background-image: url('assets/images/menu/chicken-tikka2.png')">
                    <div class="offer-text bg-black bg-opacity-50">
                        <h3 class="text-white">Chicken Tikka </h3>
                        <h5>$18.50 <del class="fst-italic opacity-75">$20.50</del></h5>
                        <a href="#" target="_blank" class="white-btn mt-3">Add TO Cart</a>
                    </div>
                </div>
            </div>
            <div class="col-md-6 mb-4">
                <div class="card rounded-0" style="background-image: url('assets/images/menu/grilled-chicken2.png')">
                    <div class="offer-text bg-black bg-opacity-50">
                        <h3 class="text-white">Grilled Chicken</h3>
                        <h5>$15 <del class="fst-italic opacity-75">$20</del></h5>
                        <a href="#" target="_blank" class="white-btn mt-3">Add TO Cart</a>
                    </div>
                </div>
            </div>
            <div class="col-md-6 mb-4">
                <div class="card rounded-0" style="background-image: url('assets/images/menu/lemon-chicken2.png')">
                    <div class="offer-text bg-black bg-opacity-50">
                        <h3 class="text-white">Lemon Chicken</h3>
                        <h5>$8.50 <del class="fst-italic opacity-75">$10.50</del></h5>
                        <a href="#" target="_blank" class="white-btn mt-3">Add TO Cart</a>
                    </div>
                </div>
            </div>
            <div class="col-md-6 mb-4">
                <div class="card rounded-0" style="background-image: url('assets/images/menu/cajun-chicken2.png')">
                    <div class="offer-text bg-black bg-opacity-50">
                        <h3 class="text-white">Cajun Chicken</h3>
                        <h5>$12.50 <del class="fst-italic opacity-75">$20.50</del></h5>
                        <a href="#" target="_blank" class="white-btn mt-3">Add TO Cart</a>
                    </div>
                </div>
            </div>
            <div class="col-md-6 mb-4">
                <div class="card rounded-0" style="background-image: url('assets/images/menu/chicken-kiev2.png')">
                    <div class="offer-text bg-black bg-opacity-50">
                        <h3 class="text-white">Chicken Kiev</h3>
                        <h5>$8.50 <del class="fst-italic opacity-75">$10.50</del></h5>
                        <a href="#" target="_blank" class="white-btn mt-3">Add TO Cart</a>
                    </div>
                </div>
            </div>
        </div>
    </div>
</section>

  <!-- Section-5 testimonial-->
  <section id="review">
    <div class="wrapper testimonial-section">
      <div class="container text-center">
        <div class="text-center pb-4">
          <h2>Reviews</h2>
        </div>
        <div class="row">
         <div class="col-sm-12 col-lg-10 offset-lg-1">
           <div id="carouselExampleDark" class="carousel slide" data-bs-ride="carousel">
             <div class="carousel-indicators">
               <button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="0" class="active"
                 aria-current="true" aria-label="Slide 1"></button>
               <button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="1"
                 aria-label="Slide 2"></button>
               <button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="2"
                 aria-label="Slide 3"></button>
             </div>
             <div class="carousel-inner">
               <div class="carousel-item active">
                 <div class="carousel-caption">
                   <img src="assets/images/reviwers\reviwe1.png">
                   <p>"We believe that honesty and simplicity are the keys to meeting the challenges of everyday life."

                   </p>
                   <h5 class="orange">Johnthan Doe - Times Now</h5>
                 </div>
               </div>
               <div class="carousel-item">
                 <div class="carousel-caption">
                   <img src="assets/images/reviwers\review2.jpg">
                   <p>"The absolute best red sauce. Weather on Pizza or Pasta, it’s honestly delicious."</p>
                   <h5 class="orange">Maccy Doe - Ziggle Foods</h5>
                 </div>
               </div>
               <div class="carousel-item">
                 <div class="carousel-caption">
                   <img src="assets/images/reviwers\review-3.jpeg">
                   <p>"Very good service, good menu … not overly extensive. Food was very good quality all around. "</p>
                   <h5 class="orange">Johnthan Doe - Hello Food reviews</h5>
                 </div>
               </div>
             </div>
           </div>
         </div>
       </div>
      </div>
    </div>
  </section>



  <!-- section-6 Health tips-->
  <br><br>

  <section id="health" class="review_wrapper">
    <div class="container">
        <div class="row">
            <div class="col-lg-5 col-md-7 col-sm-7">
              <div class="text-center pb-4">
                <h2 class="black">Health Tips</h2>
                <p>Eat healthy</p>
              </div>
                <div class="card rounded-0 bg-white p-2">
                    <div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="carousel">
                        <div class="carousel-inner">
                            <div class="carousel-item active">
                                <div class="carousel-caption">
                                    <img src="assets/images/icons\apple.png">
                                    <h3>Eat A healthy diet</h3>
                                    <p>Eat a combination of different foods, including fruit, vegetables, legumes, nuts and whole grains. 
                                      </p>
                                    <a href="#" class="main-btn mt-4">Learn More</a>
                                </div>
                            </div>
                            <div class="carousel-item">
                                <div class="carousel-caption">
                                    <img src="assets/images/icons\water.png">
                                    <h3>Stay Hydrated</h3>
                                    <p>Our bodies are roughly 60 percent water.Staying hydrated will also improve your body’s ability to absorb nutrients.</p>
                                    <a href="#" class="main-btn mt-4">Learn More</a>
                                </div>
                            </div>
                        </div>
                        <button class="carousel-control-prev" type="button"
                            data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
                            <span class="carousel-control-prev-icon" aria-hidden="true"></span>
                            <span class="visually-hidden">Previous</span>
                        </button>
                        <button class="carousel-control-next" type="button"
                            data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
                            <span class="carousel-control-next-icon" aria-hidden="true"></span>
                            <span class="visually-hidden">Next</span>
                        </button>
                    </div>
                </div>
            </div>
        </div>
    </div>
</section>
  
  <!-- section-7 Gallery-->
 <!-- Gallery -->
 <br><br>
<section id="gallery">
  <div class="text-center pb-4">
    <h1 >Follow Us</h1>
    <a target="_blank" href="#"><h3 style="color:var(--primary-color)">@Kabab_and_kurry</h3></a>
    
  </div>
  <div class="row">
    <div class="col-lg-4 col-md-12 mb-4 mb-lg-0">
      <a target="_blank" href="#"><img
      src="assets/images/gallery\food.jpg"
      class="w-100 shadow-1-strong rounded mb-4"
      alt="Boat on Calm Water"
      /></a>
      
      <a target="_blank" href="#"><img
      src="assets/images/gallery\big.jpg"
      class="w-100 shadow-1-strong rounded mb-4"
      alt="Wintry Mountain Landscape"
      /></a>
  </div>
  
  <div class="col-lg-4 mb-4 mb-lg-0">
    <a target="_blank" href="#"><img
    src="assets/images/gallery\vert3.jpg"
    class="w-100 shadow-1-strong rounded mb-4"
    alt="Mountains in the Clouds"
    /></a>
    
    <a target="_blank" href="#"><img
    src="assets/images/gallery\food2.png"
    class="w-100 shadow-1-strong rounded mb-4"
    alt="Boat on Calm Water"
    /></a>
  </div>
  
  <div class="col-lg-4 mb-4 mb-lg-0">
    <a target="_blank" href="#"> <img
    src="assets/images/gallery\food3.jpg"
    class="w-100 shadow-1-strong rounded mb-4"
    alt="Waves at Sea"
    /></a>
    
    <a target="_blank" href="#"><img
    src="assets/images/gallery\tandoor.jpg"
    class="w-100 shadow-1-strong rounded mb-4"
    alt="Yosemite National Park"
    /></a>
  </div>
</div>
</section>

<!-- section-8 newslettar-->
<section id="contact">
  <div class="newslettar wrapper">
      <div class="container">
        <div class="row">
          <div class="sol-sm-12">
            <div class="text-content text-center pb-4">
                <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d109552.34355997699!2d75.85667325000001!3d30.900345199999997!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x391a837462345a7d%3A0x681102348ec60610!2sLudhiana%2C%20Punjab!5e0!3m2!1sen!2sin!4v1696431599316!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
             <h2 class="black">Vist us at Jassa Food !</h2>
             <p>Hurry up! Subscribe our newsletter
              and get 25% Off</p>
            </div>
            <form class="newsletter">
              <div class="row">
                <div class="col-md-8 col-12">
                  <input class="form-control" placeholder="Email Address here" name="email" type="email">
                </div>
                <div class="col-md-4 col-12">
                  <button class="main-btn" type="submit">Subscribe</button>
                </div>
              </div>
            </form>
          </div>
        </div>
      </div>
    </div>
  </section>

 <!-- section-9 footer-->
 <section id="contact" class="footer_wrapper mt-3 mt-md-0">
  <div class="container">
      <div class="row align-items-center">
          <div class="col-lg-4 col-md-6 text-center text-md-start">
              <div class="footer-logo mb-3 mb-md-0">
                  <img src="assets/images/logo.svg">
              </div>
          </div>
          <div class="col-lg-4 col-md-6">
              <ul
                  class="list-unstyled d-flex justify-content-center justify-content-md-end justify-content-lg-center jus social-icon mb-3 mb-md-0">
                  <li>
                      <a href="#" target="_blank"><i class="fab fa-instagram"></i></a>
                  </li>
                  <li>
                      <a href="#" target="_blank"><i class="fab fa-facebook-f"></i> </a>
                  </li>
                  <li>
                      <a href="#" target="_blank"><i class="fab fa-twitter"></i></a>
                  </li>
                  <li>
                      <a href="#" target="_blank"><i class="fab fa-linkedin-in"></i> </a>
                  </li>
              </ul>
          </div>
          <div class="col-lg-4 col-md-12">
              <div class="copyright-text text-lg-start text-center mb-3 mb-lg-0">
                  <p class="mb-0">Copyright © 2023 <a href="#">Jassa</a>. All Rights Reserved.</p>
              </div>
          </div>
      </div>
  </div>
</section>

3. Guys here is git repo link and put css,  js and images inside scr/assets folder:

Git Repo

4. Guys please add below code inside scr/index.html file:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Angular | Kabab and Kurry</title>
  <base href="/">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <!-- bootstrap CDN -->
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
 
 
  <link rel="icon" href="assets/images/fork.png"></link>
</head>
<body data-bs-spy="scroll" data-bs-target=".navbar" data-bs-offset="0">
  <app-root></app-root>
  <!-- JS Libraries -->
  <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js"></script>
  
  
</body>
</html>

5. Guys please add below code inside angukar.json file:

... 
"styles":
 [ ... "src/assets/css/style.css", "src/assets/css/responsive-style.css" ], 
"scripts": [ "src/assets/js/main.js" ]

Friends in the end must run ng serve command into your terminal to run the angular 16 ecommerce project.

Now we are done friends. If you have any kind of query, suggestion and new requirement then feel free to comment below.

Note: Friends, In this post, I just tell the basic setup and things, you can change the code according to your requirements.

I will appreciate that if you will tell your views for this post. Nothing matters if your views will be good or bad because with your views, I will make my next posts more good and helpful.

Jassa

Thanks

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

2 Comments

  • Hello home dear Expert, congratulations on your work, it’s very great. I’m Gilbert, I would like to have your paid Templetes source code to present to customers in Africa here. I really want it to be a partnership, I am a young person passionate about web development. You can also help me with my clients to host their website.
    Thanks you

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.