Software-Engineering-Project-Team / online_shopping_system

https://online-shopping-system-one.vercel.app/
0 stars 0 forks source link

UI feature commit - item advertising sections #10

Closed Damienb123 closed 4 months ago

Damienb123 commented 4 months ago

Item Advertising

:notebook_with_decorative_cover: Table of Contents

:bangbang: Plan of Action

:space_invader: Code Breakdown

1 example of the Recently Added Section for Belvoir Farm - Organic Elderflower Lemonade.

<div className="flex space-x-4">
          <div className="card bg-base-100 w-96 shadow-xl">
            {/*Image of Item*/}
            <figure>
              <img
                src="https://contenthandler-raleys.fieldera.com/prod/45777/1/0/0/80060414-Main.jpg"
                alt="Belvoir Farm - Organic Elderflower Lemonade" />
            </figure>
            <div className="card-body">
              <h2 className="card-title">
                Belvoir Farm - Organic Elderflower Lemonade
                <div className="badge bg-success">NEW</div>
              </h2>
              <p>A Refreshing, floral, lemony, sparkling, natural goodness taste of Elderflower lemonade.</p>
              <div className="card-actions justify-end">
                <div className="badge badge-outline">Organic</div>
              </div>
            </div>
          </div>

:eyes: Visuals

section 1 Section 2 Section 3

Section 4