Browse docs
index.html
style.css
script.js
README.md
index.html
<div id="app">
<header class="mobile-header">
<a href="#" class="text-dark text-decoration-none fw-bold fs-3">AURA.</a>
<button class="btn btn-link text-dark fs-1 p-0" @click="isMobileMenuOpen = true">
<i class="bi bi-list"></i>
</button>
</header>
<div class="mobile-overlay" :class="{ 'is-open': isMobileMenuOpen }">
<button class="close-overlay" @click="isMobileMenuOpen = false">
<i class="bi bi-x-lg"></i>
</button>
<nav class="overlay-nav">
<a @click="scrollToSection('collections')" :class="{ active: activeSection === 'collections' }">Collections</a>
<a @click="scrollToSection('lookbook')" :class="{ active: activeSection === 'lookbook' }">Lookbook</a>
<a @click="scrollToSection('editorial')" :class="{ active: activeSection === 'editorial' }">Editorial</a>
<a @click="scrollToSection('journal')" :class="{ active: activeSection === 'journal' }">The Journal</a>
<a @click="scrollToSection('bespoke')" :class="{ active: activeSection === 'bespoke' }">Bespoke</a>
</nav>
</div>
<aside class="sidebar">
<a href="#" class="sidebar-brand">AURA.</a>
<ul class="sidebar-nav">
<li><a @click="scrollToSection('collections')" :class="{ active: activeSection === 'collections' }">Collections</a></li>
<li><a @click="scrollToSection('lookbook')" :class="{ active: activeSection === 'lookbook' }">Lookbook</a></li>
<li><a @click="scrollToSection('editorial')" :class="{ active: activeSection === 'editorial' }">Editorial</a></li>
<li><a @click="scrollToSection('journal')" :class="{ active: activeSection === 'journal' }">The Journal</a></li>
<li><a @click="scrollToSection('bespoke')" :class="{ active: activeSection === 'bespoke' }">Bespoke</a></li>
</ul>
<div class="sidebar-footer">
© 2026 AURA Studios.<br>All rights reserved.
</div>
</aside>
<main class="main-wrapper">
<section id="collections" class="content-block">
<div class="container-fluid p-0">
<div class="row align-items-center m-0">
<div class="col-lg-5 pe-lg-5 mb-5 mb-lg-0">
<div v-if="isLoading">
<div class="skeleton-box w-50 mb-3" style="height: 20px;"></div>
<div class="skeleton-box w-75 mb-3" style="height: 65px;"></div>
<div class="skeleton-box w-100 mb-4" style="height: 65px;"></div>
<div class="skeleton-box w-100 mb-2" style="height: 15px;"></div>
<div class="skeleton-box w-100 mb-5" style="height: 15px;"></div>
<div class="skeleton-box w-100 mb-4" style="height: 45px;"></div>
<div class="skeleton-box w-100 mb-4" style="height: 45px;"></div>
<div class="skeleton-box w-100" style="height: 60px;"></div>
</div>
<div v-else>
<span class="tag-label">Autumn / Winter 2026</span>
<h1 class="hero-title">Elevate Your Everyday.</h1>
<p class="hero-subtitle">Avant-garde silhouettes tailored with premium organic fabrics. Designed specifically for the uncompromising modern minimalist.</p>
<div class="editorial-form">
<input type="text" v-model="waitlistForm.name" class="form-control-minimal" placeholder="First Name">
<input type="email" v-model="waitlistForm.email" class="form-control-minimal" placeholder="Email Address">
<button class="btn-action-hero mt-3" @click="handleWaitlistSubmit">Join the Waitlist</button>
</div>
</div>
</div>
<div class="col-lg-7">
<div v-if="isLoading">
<div class="skeleton-box w-100" style="height: 880px;"></div>
</div>
<div v-else class="image-container-tall">
<img src="https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1200&q=80" alt="Autumn Editorial">
<div class="testimonial-glass-card">
<p class="testimonial-text">"The draping and architectural structure of the heavy wool coats are absolutely unparalleled."</p>
<span class="fw-bold text-uppercase tracking-wider" style="font-size: 0.75rem;">— Vogue Minimalist</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="lookbook" class="content-block" style="background-color: #fafafa;">
<div class="container-fluid p-0">
<div class="row align-items-center m-0 flex-column-reverse flex-lg-row">
<div class="col-lg-6">
<div v-if="isLoading">
<div class="skeleton-box w-100" style="height: 880px;"></div>
</div>
<div v-else class="image-container-tall">
<img :src="activeLookbookImage" :key="activeGalleryIndex" alt="Lookbook Active Piece">
</div>
</div>
<div class="col-lg-6">
<div class="block2-content-right">
<div v-if="isLoading">
<div class="skeleton-box w-25 mb-4" style="height: 15px;"></div>
<div class="skeleton-box w-75 mb-3" style="height: 50px;"></div>
<div class="skeleton-box w-100 mb-5" style="height: 20px;"></div>
<div class="skeleton-box w-100 mb-4" style="height: 60px;"></div>
<div class="skeleton-box w-100 mb-4" style="height: 60px;"></div>
<div class="skeleton-box w-100" style="height: 60px;"></div>
</div>
<div v-else>
<span class="tag-label">Signature Cuts</span>
<h2 class="hero-title" style="font-size: 3.5rem;">Lookbook</h2>
<p class="hero-subtitle mb-0">Navigate through our curated layout. Each signature item is structurally designed to transition seamlessly from day into evening.</p>
<div class="switcher-bars-wrapper">
<div v-for="(item, index) in lookbookItems"
:key="index"
class="switcher-bar-item"
:class="{ 'active': activeGalleryIndex === index }"
@click="changeGalleryImage(index)">
<div class="bar-line-container">
<div class="bar-line-active"></div>
</div>
<div class="bar-label-text">{{ item.title }}</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="editorial" class="content-block">
<div class="container-fluid p-0">
<span class="tag-label mb-5 text-center d-block">Visual Narrative</span>
<div class="row m-0">
<div v-for="(item, index) in editorialItems" :key="index" class="col-md-6 col-lg-4">
<div v-if="isLoading" class="mb-4">
<div class="skeleton-box w-100 mb-3" style="height: 500px;"></div>
<div class="skeleton-box w-75 mb-2" style="height: 20px;"></div>
<div class="skeleton-box w-50" style="height: 15px;"></div>
</div>
<div v-else class="fashion-card">
<div class="fashion-card-img-wrapper">
<img :src="item.image" :alt="item.title">
</div>
<h3 class="fashion-card-title">{{ item.title }}</h3>
<span class="fashion-card-meta">{{ item.subtitle }}</span>
</div>
</div>
</div>
</div>
</section>
<section id="journal" class="content-block" style="background-color: #fcfcfc;">
<div class="container-fluid p-0">
<div class="row m-0 align-items-center">
<div class="col-lg-4 mb-5 mb-lg-0">
<span class="tag-label">Essays & Perspectives</span>
<h2 class="hero-title" style="font-size: 3.2rem;">The Journal.</h2>
<p class="hero-subtitle">Deep dives into sustainable craftsmanship, minimalist architecture, and the evolution of modern avant-garde design.</p>
</div>
<div class="col-lg-8">
<div v-if="isLoading">
<div v-for="n in 3" :key="n" class="d-flex gap-4 mb-4 align-items-center">
<div class="skeleton-box" style="width: 120px; height: 160px; flex-shrink: 0;"></div>
<div class="w-100">
<div class="skeleton-box w-25 mb-2" style="height: 15px;"></div>
<div class="skeleton-box w-75 mb-2" style="height: 25px;"></div>
<div class="skeleton-box w-50" style="height: 15px;"></div>
</div>
</div>
</div>
<div v-else>
<div v-for="(post, index) in journalPosts" :key="index" class="journal-row d-flex gap-4 align-items-center">
<img :src="post.thumbnail" :alt="post.title" class="journal-thumb">
<div>
<span class="journal-date">{{ post.date }}</span>
<h4 class="journal-title">{{ post.title }}</h4>
<p class="text-secondary small mt-2 mb-0">{{ post.excerpt }}</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="bespoke" class="content-block">
<div class="container-fluid p-0">
<div class="cta-container">
<div v-if="isLoading">
<div class="skeleton-box mx-auto mb-4 w-75" style="height: 80px;"></div>
<div class="skeleton-box mx-auto mb-5 w-50" style="height: 20px;"></div>
<div class="skeleton-box mx-auto" style="height: 60px; width: 250px;"></div>
</div>
<div v-else>
<span class="tag-label">Custom Tailoring</span>
<h2 class="cta-title">Experience Bespoke Luxury.</h2>
<p class="hero-subtitle mx-auto mb-5">Schedule a private digital consultation with our lead designers to curate or tailor custom pieces built around your precise measurements.</p>
<button class="btn btn-dark rounded-0 px-5 py-3 text-uppercase fw-bold" style="font-size: 0.85rem; letter-spacing: 2px;" @click="handleBespokeConsultation">
Book Consultation
</button>
</div>
</div>
</div>
</section>
</main>
</div>
User Reviews
5.0
1 reviews
5 stars
1
4 stars
0
3 stars
0
2 stars
0
1 stars
0
L
Leonardo
License
Copyright (c) 2026 (https://thefrontend.org/ux/scrollspy-section-side-menu)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Copyright (c) 2026 (https://thefrontend.org/ux/scrollspy-section-side-menu)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.