2025-12-13 22:59:42 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
2025-12-14 01:54:40 -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-14 01:54:40 -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-14 01:54:40 -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-14 01:54:40 -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-14 01:54:40 -06:00
|
|
|
|
2025-12-13 22:59:42 -06:00
|
|
|
<div class="navbar-menu">
|
|
|
|
|
<ul class="nav-menu-list">
|
2025-12-14 01:54:40 -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 active">Portfolio</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a href="/about.html" class="nav-link">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-14 01:54:40 -06:00
|
|
|
|
2025-12-13 22:59:42 -06:00
|
|
|
<div class="navbar-actions">
|
|
|
|
|
<div class="action-item wishlist-dropdown-wrapper">
|
2025-12-14 01:54:40 -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-14 01:54:40 -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-14 01:54:40 -06:00
|
|
|
|
2025-12-13 22:59:42 -06:00
|
|
|
<div class="action-item cart-dropdown-wrapper">
|
2025-12-14 01:54:40 -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-14 01:54:40 -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-14 01:54:40 -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-14 01:54:40 -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-14 01:54:40 -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-14 01:54:40 -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>
|
2025-12-14 01:54:40 -06:00
|
|
|
<nav class="modern-navbar">
|
|
|
|
|
<div class="navbar-wrapper">
|
|
|
|
|
<div class="navbar-brand">
|
|
|
|
|
<a href="/home.html" class="brand-link">
|
|
|
|
|
<img
|
|
|
|
|
src="/uploads/images/8ba675b9-c4e6-41e6-8f14-382b9ee1d019.jpg"
|
|
|
|
|
alt="Sky Art Shop Logo"
|
|
|
|
|
class="brand-logo"
|
|
|
|
|
/>
|
|
|
|
|
<span class="brand-name">Sky Art Shop</span>
|
|
|
|
|
</a>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
2025-12-14 01:54:40 -06:00
|
|
|
|
|
|
|
|
<div class="navbar-menu">
|
|
|
|
|
<ul class="nav-menu-list">
|
|
|
|
|
<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">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>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="navbar-actions">
|
|
|
|
|
<div class="action-item wishlist-dropdown-wrapper">
|
|
|
|
|
<button
|
|
|
|
|
class="action-btn"
|
|
|
|
|
id="wishlistToggle"
|
|
|
|
|
aria-label="Wishlist"
|
|
|
|
|
>
|
|
|
|
|
<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>
|
|
|
|
|
<button class="dropdown-close" id="wishlistClose">
|
|
|
|
|
<i class="bi bi-x-lg"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</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>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
2025-12-14 01:54:40 -06:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="action-item cart-dropdown-wrapper">
|
|
|
|
|
<button
|
|
|
|
|
class="action-btn"
|
|
|
|
|
id="cartToggle"
|
|
|
|
|
aria-label="Shopping Cart"
|
|
|
|
|
>
|
|
|
|
|
<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>
|
|
|
|
|
<button class="dropdown-close" id="cartClose">
|
|
|
|
|
<i class="bi bi-x-lg"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</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>
|
|
|
|
|
<a href="/checkout.html" class="btn-primary-full"
|
|
|
|
|
>Proceed to Checkout</a
|
|
|
|
|
>
|
|
|
|
|
<a href="/shop.html" class="btn-text">Continue Shopping</a>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-12-14 01:54:40 -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>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-12-14 01:54:40 -06:00
|
|
|
|
|
|
|
|
<div class="mobile-menu" id="mobileMenu">
|
|
|
|
|
<div class="mobile-menu-header">
|
|
|
|
|
<span class="mobile-brand">Sky Art Shop</span>
|
|
|
|
|
<button class="mobile-close" id="mobileMenuClose">
|
|
|
|
|
<i class="bi bi-x-lg"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</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>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
2025-12-14 01:54:40 -06:00
|
|
|
</nav>
|
2025-12-13 22:59:42 -06:00
|
|
|
|
|
|
|
|
<section class="about-hero">
|
2025-12-14 01:54:40 -06:00
|
|
|
<div class="container">
|
|
|
|
|
<h1>Portfolio</h1>
|
|
|
|
|
<p class="hero-subtitle">Explore our creative projects and artwork</p>
|
|
|
|
|
</div>
|
2025-12-13 22:59:42 -06:00
|
|
|
</section>
|
|
|
|
|
|
2025-12-14 01:54:40 -06:00
|
|
|
<section
|
|
|
|
|
class="portfolio-section"
|
|
|
|
|
style="padding: 60px 0; background: #f8f9fa"
|
|
|
|
|
>
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div id="loadingMessage" style="text-align: center; padding: 40px">
|
|
|
|
|
<div class="spinner-border text-primary" role="status">
|
|
|
|
|
<span class="visually-hidden">Loading...</span>
|
|
|
|
|
</div>
|
|
|
|
|
<p style="margin-top: 15px; color: #666">
|
|
|
|
|
Loading portfolio projects...
|
|
|
|
|
</p>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
2025-12-14 01:54:40 -06:00
|
|
|
<div
|
|
|
|
|
id="portfolioGrid"
|
|
|
|
|
class="products-grid"
|
|
|
|
|
style="
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
|
|
|
|
gap: 30px;
|
|
|
|
|
"
|
|
|
|
|
></div>
|
|
|
|
|
<div
|
|
|
|
|
id="noProjects"
|
|
|
|
|
style="display: none; text-align: center; padding: 40px; color: #666"
|
|
|
|
|
>
|
|
|
|
|
<i
|
|
|
|
|
class="bi bi-images"
|
|
|
|
|
style="font-size: 48px; color: #ccc; margin-bottom: 15px"
|
|
|
|
|
></i>
|
|
|
|
|
<p>No portfolio projects available at the moment.</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-12-13 22:59:42 -06:00
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<footer class="footer">
|
2025-12-14 01:54:40 -06:00
|
|
|
<div class="container">
|
|
|
|
|
<div class="footer-content">
|
|
|
|
|
<div class="footer-brand">
|
|
|
|
|
<h2>Sky Art Shop</h2>
|
|
|
|
|
<p>Follow Us</p>
|
|
|
|
|
<div class="social-links">
|
|
|
|
|
<a href="#instagram" aria-label="Instagram"
|
|
|
|
|
><i class="bi bi-instagram"></i
|
|
|
|
|
></a>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
2025-12-14 01:54:40 -06:00
|
|
|
</div>
|
|
|
|
|
<div class="footer-links">
|
|
|
|
|
<h3>Quick Links</h3>
|
|
|
|
|
<ul>
|
|
|
|
|
<li><a href="/shop.html">Shop</a></li>
|
|
|
|
|
<li><a href="/about.html">About</a></li>
|
|
|
|
|
<li><a href="/contact.html">Contact</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2025-12-13 22:59:42 -06:00
|
|
|
</div>
|
2025-12-14 01:54:40 -06:00
|
|
|
<div class="footer-bottom">
|
|
|
|
|
<p>© 2025 by 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-14 01:54:40 -06:00
|
|
|
<script src="/assets/js/shopping.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
// Load portfolio projects from API
|
|
|
|
|
async function loadPortfolio() {
|
|
|
|
|
try {
|
|
|
|
|
const response = await fetch("/api/portfolio/projects");
|
|
|
|
|
if (response.ok) {
|
|
|
|
|
const data = await response.json();
|
|
|
|
|
const projects = data.projects || [];
|
|
|
|
|
|
|
|
|
|
document.getElementById("loadingMessage").style.display = "none";
|
|
|
|
|
|
|
|
|
|
if (projects.length === 0) {
|
|
|
|
|
document.getElementById("noProjects").style.display = "block";
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const grid = document.getElementById("portfolioGrid");
|
|
|
|
|
grid.innerHTML = projects
|
|
|
|
|
.map(
|
|
|
|
|
(project) => `
|
|
|
|
|
<div class="product-card" style="background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s;">
|
|
|
|
|
<div class="product-image" style="position: relative; padding-top: 100%; overflow: hidden; background: #f5f5f5;">
|
|
|
|
|
<img src="${
|
|
|
|
|
project.imageurl || "/assets/images/placeholder.jpg"
|
|
|
|
|
}"
|
|
|
|
|
alt="${project.title}"
|
|
|
|
|
style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;"
|
|
|
|
|
loading="lazy" />
|
|
|
|
|
${
|
|
|
|
|
project.category
|
|
|
|
|
? `<span style="position: absolute; top: 10px; right: 10px; background: rgba(102, 126, 234, 0.9); color: white; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500;">${project.category}</span>`
|
|
|
|
|
: ""
|
|
|
|
|
}
|
|
|
|
|
</div>
|
|
|
|
|
<div style="padding: 20px;">
|
|
|
|
|
<h3 style="font-size: 18px; font-weight: 600; margin-bottom: 10px; color: #333;">${
|
|
|
|
|
project.title
|
|
|
|
|
}</h3>
|
|
|
|
|
<p style="color: #666; font-size: 14px; line-height: 1.6; margin: 0;">${
|
|
|
|
|
project.description || ""
|
|
|
|
|
}</p>
|
|
|
|
|
<div style="margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; color: #999; font-size: 12px;">
|
|
|
|
|
<i class="bi bi-calendar"></i> ${new Date(
|
|
|
|
|
project.createdat
|
|
|
|
|
).toLocaleDateString()}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
`
|
|
|
|
|
)
|
|
|
|
|
.join("");
|
|
|
|
|
} else {
|
|
|
|
|
document.getElementById("loadingMessage").style.display = "none";
|
|
|
|
|
document.getElementById("noProjects").style.display = "block";
|
|
|
|
|
}
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error("Error loading portfolio:", error);
|
|
|
|
|
document.getElementById("loadingMessage").innerHTML =
|
|
|
|
|
'<p style="color: #dc3545;">Error loading portfolio projects. Please try again later.</p>';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Initialize
|
|
|
|
|
loadPortfolio();
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
2025-12-13 22:59:42 -06:00
|
|
|
</html>
|