Initial commit
This commit is contained in:
commit
3bc898dd10
130 changed files with 25918 additions and 0 deletions
BIN
public/startbootstrap-shop-homepage-gh-pages/assets/favicon.ico
Normal file
BIN
public/startbootstrap-shop-homepage-gh-pages/assets/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
10826
public/startbootstrap-shop-homepage-gh-pages/css/styles.css
Normal file
10826
public/startbootstrap-shop-homepage-gh-pages/css/styles.css
Normal file
File diff suppressed because it is too large
Load diff
267
public/startbootstrap-shop-homepage-gh-pages/index.html
Normal file
267
public/startbootstrap-shop-homepage-gh-pages/index.html
Normal file
|
@ -0,0 +1,267 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="author" content="" />
|
||||
<title>Shop Homepage - Start Bootstrap Template</title>
|
||||
<!-- Favicon-->
|
||||
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
|
||||
<!-- Bootstrap icons-->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" />
|
||||
<!-- Core theme CSS (includes Bootstrap)-->
|
||||
<link href="css/styles.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation-->
|
||||
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
||||
<div class="container px-4 px-lg-5">
|
||||
<a class="navbar-brand" href="#!">Start Bootstrap</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0 ms-lg-4">
|
||||
<li class="nav-item"><a class="nav-link active" aria-current="page" href="#!">Home</a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="#!">About</a></li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" id="navbarDropdown" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">Shop</a>
|
||||
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||
<li><a class="dropdown-item" href="#!">All Products</a></li>
|
||||
<li><hr class="dropdown-divider" /></li>
|
||||
<li><a class="dropdown-item" href="#!">Popular Items</a></li>
|
||||
<li><a class="dropdown-item" href="#!">New Arrivals</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<form class="d-flex">
|
||||
<button class="btn btn-outline-dark" type="submit">
|
||||
<i class="bi-cart-fill me-1"></i>
|
||||
Cart
|
||||
<span class="badge bg-dark text-white ms-1 rounded-pill">0</span>
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- Header-->
|
||||
<header class="bg-dark py-5">
|
||||
<div class="container px-4 px-lg-5 my-5">
|
||||
<div class="text-center text-white">
|
||||
<h1 class="display-4 fw-bolder">Shop in style</h1>
|
||||
<p class="lead fw-normal text-white-50 mb-0">With this shop hompeage template</p>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<!-- Section-->
|
||||
<section class="py-5">
|
||||
<div class="container px-4 px-lg-5 mt-5">
|
||||
<div class="row gx-4 gx-lg-5 row-cols-2 row-cols-md-3 row-cols-xl-4 justify-content-center">
|
||||
<div class="col mb-5">
|
||||
<div class="card h-100">
|
||||
<!-- Product image-->
|
||||
<img class="card-img-top" src="https://dummyimage.com/450x300/dee2e6/6c757d.jpg" alt="..." />
|
||||
<!-- Product details-->
|
||||
<div class="card-body p-4">
|
||||
<div class="text-center">
|
||||
<!-- Product name-->
|
||||
<h5 class="fw-bolder">Fancy Product</h5>
|
||||
<!-- Product price-->
|
||||
$40.00 - $80.00
|
||||
</div>
|
||||
</div>
|
||||
<!-- Product actions-->
|
||||
<div class="card-footer p-4 pt-0 border-top-0 bg-transparent">
|
||||
<div class="text-center"><a class="btn btn-outline-dark mt-auto" href="#">View options</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col mb-5">
|
||||
<div class="card h-100">
|
||||
<!-- Sale badge-->
|
||||
<div class="badge bg-dark text-white position-absolute" style="top: 0.5rem; right: 0.5rem">Sale</div>
|
||||
<!-- Product image-->
|
||||
<img class="card-img-top" src="https://dummyimage.com/450x300/dee2e6/6c757d.jpg" alt="..." />
|
||||
<!-- Product details-->
|
||||
<div class="card-body p-4">
|
||||
<div class="text-center">
|
||||
<!-- Product name-->
|
||||
<h5 class="fw-bolder">Special Item</h5>
|
||||
<!-- Product reviews-->
|
||||
<div class="d-flex justify-content-center small text-warning mb-2">
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
</div>
|
||||
<!-- Product price-->
|
||||
<span class="text-muted text-decoration-line-through">$20.00</span>
|
||||
$18.00
|
||||
</div>
|
||||
</div>
|
||||
<!-- Product actions-->
|
||||
<div class="card-footer p-4 pt-0 border-top-0 bg-transparent">
|
||||
<div class="text-center"><a class="btn btn-outline-dark mt-auto" href="#">Add to cart</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col mb-5">
|
||||
<div class="card h-100">
|
||||
<!-- Sale badge-->
|
||||
<div class="badge bg-dark text-white position-absolute" style="top: 0.5rem; right: 0.5rem">Sale</div>
|
||||
<!-- Product image-->
|
||||
<img class="card-img-top" src="https://dummyimage.com/450x300/dee2e6/6c757d.jpg" alt="..." />
|
||||
<!-- Product details-->
|
||||
<div class="card-body p-4">
|
||||
<div class="text-center">
|
||||
<!-- Product name-->
|
||||
<h5 class="fw-bolder">Sale Item</h5>
|
||||
<!-- Product price-->
|
||||
<span class="text-muted text-decoration-line-through">$50.00</span>
|
||||
$25.00
|
||||
</div>
|
||||
</div>
|
||||
<!-- Product actions-->
|
||||
<div class="card-footer p-4 pt-0 border-top-0 bg-transparent">
|
||||
<div class="text-center"><a class="btn btn-outline-dark mt-auto" href="#">Add to cart</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col mb-5">
|
||||
<div class="card h-100">
|
||||
<!-- Product image-->
|
||||
<img class="card-img-top" src="https://dummyimage.com/450x300/dee2e6/6c757d.jpg" alt="..." />
|
||||
<!-- Product details-->
|
||||
<div class="card-body p-4">
|
||||
<div class="text-center">
|
||||
<!-- Product name-->
|
||||
<h5 class="fw-bolder">Popular Item</h5>
|
||||
<!-- Product reviews-->
|
||||
<div class="d-flex justify-content-center small text-warning mb-2">
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
</div>
|
||||
<!-- Product price-->
|
||||
$40.00
|
||||
</div>
|
||||
</div>
|
||||
<!-- Product actions-->
|
||||
<div class="card-footer p-4 pt-0 border-top-0 bg-transparent">
|
||||
<div class="text-center"><a class="btn btn-outline-dark mt-auto" href="#">Add to cart</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col mb-5">
|
||||
<div class="card h-100">
|
||||
<!-- Sale badge-->
|
||||
<div class="badge bg-dark text-white position-absolute" style="top: 0.5rem; right: 0.5rem">Sale</div>
|
||||
<!-- Product image-->
|
||||
<img class="card-img-top" src="https://dummyimage.com/450x300/dee2e6/6c757d.jpg" alt="..." />
|
||||
<!-- Product details-->
|
||||
<div class="card-body p-4">
|
||||
<div class="text-center">
|
||||
<!-- Product name-->
|
||||
<h5 class="fw-bolder">Sale Item</h5>
|
||||
<!-- Product price-->
|
||||
<span class="text-muted text-decoration-line-through">$50.00</span>
|
||||
$25.00
|
||||
</div>
|
||||
</div>
|
||||
<!-- Product actions-->
|
||||
<div class="card-footer p-4 pt-0 border-top-0 bg-transparent">
|
||||
<div class="text-center"><a class="btn btn-outline-dark mt-auto" href="#">Add to cart</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col mb-5">
|
||||
<div class="card h-100">
|
||||
<!-- Product image-->
|
||||
<img class="card-img-top" src="https://dummyimage.com/450x300/dee2e6/6c757d.jpg" alt="..." />
|
||||
<!-- Product details-->
|
||||
<div class="card-body p-4">
|
||||
<div class="text-center">
|
||||
<!-- Product name-->
|
||||
<h5 class="fw-bolder">Fancy Product</h5>
|
||||
<!-- Product price-->
|
||||
$120.00 - $280.00
|
||||
</div>
|
||||
</div>
|
||||
<!-- Product actions-->
|
||||
<div class="card-footer p-4 pt-0 border-top-0 bg-transparent">
|
||||
<div class="text-center"><a class="btn btn-outline-dark mt-auto" href="#">View options</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col mb-5">
|
||||
<div class="card h-100">
|
||||
<!-- Sale badge-->
|
||||
<div class="badge bg-dark text-white position-absolute" style="top: 0.5rem; right: 0.5rem">Sale</div>
|
||||
<!-- Product image-->
|
||||
<img class="card-img-top" src="https://dummyimage.com/450x300/dee2e6/6c757d.jpg" alt="..." />
|
||||
<!-- Product details-->
|
||||
<div class="card-body p-4">
|
||||
<div class="text-center">
|
||||
<!-- Product name-->
|
||||
<h5 class="fw-bolder">Special Item</h5>
|
||||
<!-- Product reviews-->
|
||||
<div class="d-flex justify-content-center small text-warning mb-2">
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
</div>
|
||||
<!-- Product price-->
|
||||
<span class="text-muted text-decoration-line-through">$20.00</span>
|
||||
$18.00
|
||||
</div>
|
||||
</div>
|
||||
<!-- Product actions-->
|
||||
<div class="card-footer p-4 pt-0 border-top-0 bg-transparent">
|
||||
<div class="text-center"><a class="btn btn-outline-dark mt-auto" href="#">Add to cart</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col mb-5">
|
||||
<div class="card h-100">
|
||||
<!-- Product image-->
|
||||
<img class="card-img-top" src="https://dummyimage.com/450x300/dee2e6/6c757d.jpg" alt="..." />
|
||||
<!-- Product details-->
|
||||
<div class="card-body p-4">
|
||||
<div class="text-center">
|
||||
<!-- Product name-->
|
||||
<h5 class="fw-bolder">Popular Item</h5>
|
||||
<!-- Product reviews-->
|
||||
<div class="d-flex justify-content-center small text-warning mb-2">
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
<div class="bi-star-fill"></div>
|
||||
</div>
|
||||
<!-- Product price-->
|
||||
$40.00
|
||||
</div>
|
||||
</div>
|
||||
<!-- Product actions-->
|
||||
<div class="card-footer p-4 pt-0 border-top-0 bg-transparent">
|
||||
<div class="text-center"><a class="btn btn-outline-dark mt-auto" href="#">Add to cart</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Footer-->
|
||||
<footer class="py-5 bg-dark">
|
||||
<div class="container"><p class="m-0 text-center text-white">Copyright © Your Website 2023</p></div>
|
||||
</footer>
|
||||
<!-- Bootstrap core JS-->
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<!-- Core theme JS-->
|
||||
<script src="js/scripts.js"></script>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,7 @@
|
|||
/*!
|
||||
* Start Bootstrap - Shop Homepage v5.0.6 (https://startbootstrap.com/template/shop-homepage)
|
||||
* Copyright 2013-2023 Start Bootstrap
|
||||
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-shop-homepage/blob/master/LICENSE)
|
||||
*/
|
||||
// This file is intentionally blank
|
||||
// Use this file to add JavaScript to your project
|
Binary file not shown.
After Width: | Height: | Size: 44 KiB |
BIN
public/startbootstrap-shop-homepage-gh-pages/media/fractal.png
Normal file
BIN
public/startbootstrap-shop-homepage-gh-pages/media/fractal.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 111 KiB |
BIN
public/startbootstrap-shop-homepage-gh-pages/media/fractal.webp
Normal file
BIN
public/startbootstrap-shop-homepage-gh-pages/media/fractal.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 75 KiB |
Loading…
Add table
Add a link
Reference in a new issue