2025-12-13 22:59:42 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
2025-12-19 20:44:46 -06:00
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2025-12-13 22:59:42 -06:00
|
|
|
<title>About - Sky Art Shop</title>
|
2025-12-19 20:44:46 -06:00
|
|
|
<link
|
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap"
|
|
|
|
|
rel="stylesheet"
|
|
|
|
|
/>
|
|
|
|
|
<link
|
|
|
|
|
rel="stylesheet"
|
|
|
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
|
|
|
|
|
/>
|
2025-12-13 22:59:42 -06:00
|
|
|
<link rel="stylesheet" href="/assets/css/main.css" />
|
|
|
|
|
<link rel="stylesheet" href="/assets/css/navbar.css" />
|
|
|
|
|
<link rel="stylesheet" href="/assets/css/shopping.css" />
|
2025-12-19 20:44:46 -06:00
|
|
|
</head>
|
2025-12-13 22:59:42 -06:00
|
|
|
<body>
|
|
|
|
|
<!-- Modern Navigation -->
|
|
|
|
|
<nav class="modern-navbar">
|
|
|
|
|
<div class="navbar-wrapper">
|
|
|
|
|
<div class="navbar-brand">
|
|
|
|
|
<a href="/home.html" class="brand-link">
|
2025-12-19 20:44:46 -06:00
|
|
|
<img
|
|
|
|
|
src="/uploads/images/8ba675b9-c4e6-41e6-8f14-382b9ee1d019.jpg"
|
|
|
|
|
alt="Sky Art Shop Logo"
|
|
|
|
|
class="brand-logo"
|
|
|
|
|
/>
|
2025-12-13 22:59:42 -06:00
|
|
|
<span class="brand-name">Sky Art Shop</span>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2025-12-19 20:44:46 -06:00
|
|
|
|
2025-12-13 22:59:42 -06:00
|
|
|
<div class="navbar-menu">
|
|
|
|
|
<ul class="nav-menu-list">
|
2025-12-19 20:44:46 -06:00
|
|
|
<li class="nav-item">
|
|
|
|
|
<a href="/home.html" class="nav-link">Home</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a href="/shop.html" class="nav-link">Shop</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a href="/portfolio.html" class="nav-link">Portfolio</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a href="/about.html" class="nav-link active">About</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a href="/blog.html" class="nav-link">Blog</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a href="/contact.html" class="nav-link">Contact</a>
|
|
|
|
|
</li>
|
2025-12-13 22:59:42 -06:00
|
|
|
</ul>
|
|
|
|
|
</div>
|
2025-12-19 20:44:46 -06:00
|
|
|
|
2025-12-13 22:59:42 -06:00
|
|
|
<div class="navbar-actions">
|
|
|
|
|
<div class="action-item wishlist-dropdown-wrapper">
|
2025-12-19 20:44:46 -06:00
|
|
|
<button
|
|
|
|
|
class="action-btn"
|
|
|
|
|
id="wishlistToggle"
|
|
|
|
|
aria-label="Wishlist"
|
|
|
|
|
>
|
2025-12-13 22:59:42 -06:00
|
|
|
<i class="bi bi-heart"></i>
|
|
|
|
|
<span class="action-badge" id="wishlistCount">0</span>
|
|
|
|
|
</button>
|
|
|
|
|
<div class="action-dropdown wishlist-dropdown" id="wishlistPanel">
|
|
|
|
|
<div class="dropdown-head">
|
|
|
|
|
<h3>My Wishlist</h3>
|
2025-12-19 20:44:46 -06:00
|
|
|
<button class="dropdown-close" id="wishlistClose">
|
|
|
|
|
<i class="bi bi-x-lg"></i>
|
|
|
|
|
</button>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
|
|
|
|
<div class="dropdown-body" id="wishlistContent">
|
|
|
|
|
<p class="empty-state">Your wishlist is empty</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="dropdown-foot">
|
|
|
|
|
<a href="/shop.html" class="btn-outline">Continue Shopping</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-12-19 20:44:46 -06:00
|
|
|
|
2025-12-13 22:59:42 -06:00
|
|
|
<div class="action-item cart-dropdown-wrapper">
|
2025-12-19 20:44:46 -06:00
|
|
|
<button
|
|
|
|
|
class="action-btn"
|
|
|
|
|
id="cartToggle"
|
|
|
|
|
aria-label="Shopping Cart"
|
|
|
|
|
>
|
2025-12-13 22:59:42 -06:00
|
|
|
<i class="bi bi-cart3"></i>
|
|
|
|
|
<span class="action-badge" id="cartCount">0</span>
|
|
|
|
|
</button>
|
|
|
|
|
<div class="action-dropdown cart-dropdown" id="cartPanel">
|
|
|
|
|
<div class="dropdown-head">
|
|
|
|
|
<h3>Shopping Cart</h3>
|
2025-12-19 20:44:46 -06:00
|
|
|
<button class="dropdown-close" id="cartClose">
|
|
|
|
|
<i class="bi bi-x-lg"></i>
|
|
|
|
|
</button>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
|
|
|
|
<div class="dropdown-body" id="cartContent">
|
|
|
|
|
<p class="empty-state">Your cart is empty</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="dropdown-foot">
|
|
|
|
|
<div class="cart-summary">
|
|
|
|
|
<span class="summary-label">Subtotal:</span>
|
|
|
|
|
<span class="summary-value" id="cartSubtotal">$0.00</span>
|
|
|
|
|
</div>
|
2025-12-19 20:44:46 -06:00
|
|
|
<a href="/checkout.html" class="btn-primary-full"
|
|
|
|
|
>Proceed to Checkout</a
|
|
|
|
|
>
|
2025-12-13 22:59:42 -06:00
|
|
|
<a href="/shop.html" class="btn-text">Continue Shopping</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-12-19 20:44:46 -06:00
|
|
|
|
2025-12-13 22:59:42 -06:00
|
|
|
<button class="mobile-toggle" id="mobileMenuToggle" aria-label="Menu">
|
|
|
|
|
<span class="toggle-line"></span>
|
|
|
|
|
<span class="toggle-line"></span>
|
|
|
|
|
<span class="toggle-line"></span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-12-19 20:44:46 -06:00
|
|
|
|
2025-12-13 22:59:42 -06:00
|
|
|
<div class="mobile-menu" id="mobileMenu">
|
|
|
|
|
<div class="mobile-menu-header">
|
|
|
|
|
<span class="mobile-brand">Sky Art Shop</span>
|
2025-12-19 20:44:46 -06:00
|
|
|
<button class="mobile-close" id="mobileMenuClose">
|
|
|
|
|
<i class="bi bi-x-lg"></i>
|
|
|
|
|
</button>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
|
|
|
|
<ul class="mobile-menu-list">
|
|
|
|
|
<li><a href="/home.html" class="mobile-link">Home</a></li>
|
|
|
|
|
<li><a href="/shop.html" class="mobile-link">Shop</a></li>
|
|
|
|
|
<li><a href="/portfolio.html" class="mobile-link">Portfolio</a></li>
|
|
|
|
|
<li><a href="/about.html" class="mobile-link">About</a></li>
|
|
|
|
|
<li><a href="/blog.html" class="mobile-link">Blog</a></li>
|
|
|
|
|
<li><a href="/contact.html" class="mobile-link">Contact</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
<section class="about-hero">
|
2025-12-19 20:44:46 -06:00
|
|
|
<div class="container">
|
|
|
|
|
<h1>About Sky Art Shop</h1>
|
|
|
|
|
<p class="hero-subtitle">Your creative journey starts here</p>
|
|
|
|
|
</div>
|
2025-12-13 22:59:42 -06:00
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<section class="about-content">
|
2025-12-19 20:44:46 -06:00
|
|
|
<div class="container">
|
|
|
|
|
<div class="about-layout">
|
|
|
|
|
<div class="about-main-content">
|
|
|
|
|
<div class="about-text">
|
|
|
|
|
<h2>Our Story</h2>
|
|
|
|
|
<p>
|
|
|
|
|
Sky Art Shop specializes in scrapbooking, journaling,
|
|
|
|
|
cardmaking, and collaging stationery. We are passionate about
|
|
|
|
|
helping people express their creativity and preserve their
|
|
|
|
|
memories.
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
Our mission is to promote mental health and wellness through
|
|
|
|
|
creative art activities. We believe that crafting is more than
|
|
|
|
|
just a hobby—it's a therapeutic journey that brings joy,
|
|
|
|
|
mindfulness, and self-expression.
|
|
|
|
|
</p>
|
2025-12-13 22:59:42 -06:00
|
|
|
|
2025-12-19 20:44:46 -06:00
|
|
|
<h2>What We Offer</h2>
|
|
|
|
|
<p>Our carefully curated collection includes:</p>
|
|
|
|
|
<ul>
|
|
|
|
|
<li>Washi tape in various designs and patterns</li>
|
|
|
|
|
<li>Unique stickers for journaling and scrapbooking</li>
|
|
|
|
|
<li>High-quality journals and notebooks</li>
|
|
|
|
|
<li>Card making supplies and kits</li>
|
|
|
|
|
<li>Collage materials and ephemera</li>
|
|
|
|
|
<li>Creative tools and accessories</li>
|
|
|
|
|
</ul>
|
2025-12-13 22:59:42 -06:00
|
|
|
|
2025-12-19 20:44:46 -06:00
|
|
|
<h2>Why Choose Us</h2>
|
|
|
|
|
<p>
|
|
|
|
|
We hand-select every item in our store to ensure the highest
|
|
|
|
|
quality and uniqueness. Whether you're a seasoned crafter or
|
|
|
|
|
just starting your creative journey, we have something special
|
|
|
|
|
for everyone.
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
Join our community of creative minds and let your imagination
|
|
|
|
|
soar!
|
|
|
|
|
</p>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
2025-12-19 20:44:46 -06:00
|
|
|
</div>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
2025-12-19 20:44:46 -06:00
|
|
|
</div>
|
2025-12-13 22:59:42 -06:00
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<footer class="footer">
|
2025-12-19 20:44:46 -06:00
|
|
|
<div class="container">
|
|
|
|
|
<div class="footer-grid">
|
|
|
|
|
<div class="footer-col">
|
|
|
|
|
<h3 class="footer-title">Sky Art Shop</h3>
|
|
|
|
|
<p class="footer-text">
|
|
|
|
|
Your destination for unique art pieces and creative supplies.
|
|
|
|
|
</p>
|
|
|
|
|
<div class="social-links">
|
|
|
|
|
<a href="#" class="social-link"><i class="bi bi-facebook"></i></a>
|
|
|
|
|
<a href="#" class="social-link"
|
|
|
|
|
><i class="bi bi-instagram"></i
|
|
|
|
|
></a>
|
|
|
|
|
<a href="#" class="social-link"><i class="bi bi-twitter"></i></a>
|
|
|
|
|
<a href="#" class="social-link"
|
|
|
|
|
><i class="bi bi-pinterest"></i
|
|
|
|
|
></a>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
2025-12-19 20:44:46 -06:00
|
|
|
</div>
|
|
|
|
|
<div class="footer-col">
|
|
|
|
|
<h4 class="footer-heading">Shop</h4>
|
|
|
|
|
<ul class="footer-links">
|
|
|
|
|
<li><a href="/shop.html">All Products</a></li>
|
|
|
|
|
<li><a href="/shop.html?category=paintings">Paintings</a></li>
|
|
|
|
|
<li><a href="/shop.html?category=prints">Prints</a></li>
|
|
|
|
|
<li><a href="/shop.html?category=supplies">Art Supplies</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="footer-col">
|
|
|
|
|
<h4 class="footer-heading">About</h4>
|
|
|
|
|
<ul class="footer-links">
|
|
|
|
|
<li><a href="/about.html">Our Story</a></li>
|
|
|
|
|
<li><a href="/portfolio.html">Portfolio</a></li>
|
|
|
|
|
<li><a href="/blog.html">Blog</a></li>
|
|
|
|
|
<li><a href="/contact.html">Contact</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="footer-col">
|
|
|
|
|
<h4 class="footer-heading">Customer Service</h4>
|
|
|
|
|
<ul class="footer-links">
|
|
|
|
|
<li><a href="#">Shipping Info</a></li>
|
|
|
|
|
<li><a href="#">Returns</a></li>
|
|
|
|
|
<li><a href="#">FAQ</a></li>
|
|
|
|
|
<li><a href="#">Privacy Policy</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
2025-12-19 20:44:46 -06:00
|
|
|
<div class="footer-bottom">
|
|
|
|
|
<p>© 2025 Sky Art Shop. All rights reserved.</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-12-13 22:59:42 -06:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
|
|
<script src="/assets/js/main.js"></script>
|
|
|
|
|
<script src="/assets/js/cart.js"></script>
|
2025-12-19 20:44:46 -06:00
|
|
|
<script src="/assets/js/shopping.js"></script>
|
|
|
|
|
</body>
|
2025-12-13 22:59:42 -06:00
|
|
|
</html>
|