mockup.maison
Open in
urlscan Pro
23.227.38.65
Public Scan
URL:
https://mockup.maison/
Submission: On October 10 via api from US — Scanned from CA
Submission: On October 10 via api from US — Scanned from CA
Form analysis
4 forms found in the DOMPOST /cart
<form action="/cart" method="post" class="relative overflow-y-auto flex-auto" novalidate="">
<div class="grid grid-cols-1 gap-gutter bg-border">
<template x-for="(item, index) in state.items" :key="item.key">
<div class="flex py-4 section-x-padding transition bg-scheme-background" :class="{ 'opacity-50 cursor-wait': item.updating }" :data-cart-item-index="(index + 1)" :data-cart-item-key="item.key" data-cart-row="">
<template x-if="!(item.featured_image.url === null)">
<div class="flex-shrink-0 w-10 md:w-20 mr-4">
<a :href="item.url" class="block" aria-hidden="true" tabindex="-1">
<img class="w-full text-transparent" :src="getSizedImageUrl(item.featured_image.url, '110x')" :srcset="getCartImgSrcset(item.featured_image.url)" :width="item.featured_image.width" :height="item.featured_image.height" :alt="item.product_title" sizes="(min-width: 48em) 5rem, 3.5rem">
<pre x-text="item.featured_image.src"></pre>
</a>
</div>
</template>
<div class="flex-auto">
<a class="f--heading font-size--m md--up--font-size--l color--active-text" :href="item.url" x-text="item.product_title"></a>
<template x-if="item.variant_title">
<p class="text-sm" x-text="item.variant_title"></p>
</template>
<template x-if="item.selling_plan_allocation">
<p class="text-sm" x-text="item.selling_plan_allocation.selling_plan.name"></p>
</template>
<template x-for="property in flatProperties(item.properties)" :key="property.name">
<p class="text-sm">
<span x-text="property.name"></span>: <span x-text="property.value"></span>
</p>
</template>
<template x-if="item.line_level_discount_allocations.length">
<ul class="lg:hidden mt-1 text-sm text-scheme-accent" aria-label="Discount">
<template x-for="allocation in item.line_level_discount_allocations">
<li class="">
<span x-text="allocation.discount_application.title"></span>
<template x-if="allocation.amount > 0">
<span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
</template>
</li>
</template>
</ul>
</template>
<p class="text-sm my-2" x-show="errorMessages.hasOwnProperty(item.key)" x-transition:enter="transition ease duration-300" x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100"
x-transition:leave="transition ease duration-300" x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0" style="display: none;">
<span class="cart-item-error-text text-scheme-accent" x-text="errorMessages[item.key]"></span>
</p>
<div class="flex mt-1 lg:mt-2 items-center">
<button class="w-6 p-1" data-qty-adjust="minus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Remove one ' + item.title">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-minus" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M20 11v2H4v-2z"></path>
</svg>
</button>
<input type="text" name="updates[]" class="min-w-0 w-6 py-1 text-center text-sm border-b-text border-current bg-transparent" min="1" aria-label="Quantity" data-qty-input="" pattern="[0-9]*" data-qty-adjust="set"
@keyup.debounce.1000ms="keyupOnInput($event)" @change="qtyAdjust($event, item)" x-model.number="item.quantity" autocomplete="off">
<button class="w-6 p-1" data-qty-adjust="plus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Add one ' + item.title">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-plus" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M20 11v2h-7v7h-2v-7H4v-2h7V4h2v7z"></path>
</svg>
</button>
</div>
<button class="none lg:inline-block mt-1 lg:mt-2 text-sm" data-qty-adjust="remove" @click.prevent="qtyAdjust($event, item)">
<small>Remove </small>
<span class="visually-hidden" x-text="item.title"></span>
</button>
</div>
<div class="ml-1 text-right">
<template x-if="item.line_level_discount_allocations.length">
<div>
<span class="visually-hidden">Regular price</span>
<del class="line-through" x-html="formatMoney(item.original_price)"></del>
<span class="visually-hidden">Sale price</span>
<span class="" x-html="formatMoney(item.final_line_price)"></span>
</div>
</template>
<template x-if="!item.line_level_discount_allocations.length">
<span class="" x-html="formatMoney(item.final_line_price)"></span>
</template>
<template x-if="item.unit_price_measurement">
<div class="text-xs">
<span x-html="formatMoney(item.unit_price)"></span> / <span x-text="item.unit_price_measurement.reference_value"></span>
<span x-text="item.unit_price_measurement.reference_unit"></span>
</div>
</template>
<template x-if="item.line_level_discount_allocations.length">
<ul class="hidden lg:block mt-1 text-sm text-scheme-accent" aria-label="Discount">
<template x-for="allocation in item.line_level_discount_allocations">
<li class="">
<span x-text="allocation.discount_application.title"></span>
<template x-if="allocation.amount > 0">
<span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
</template>
</li>
</template>
</ul>
</template>
</div>
</div>
</template>
</div>
<div class="bottom-0 py-4 section-x-padding bg-scheme-background border-t-grid border-grid-color">
<div :class="{ 'opacity-50 cursor-wait': updating }">
<template x-if="state.cart_level_discount_applications.length" x-for="application in state.cart_level_discount_applications">
<p class="flex justify-between text-scheme-accent">
<span class="visually-hidden">Discount</span>
<span x-text="application.title"></span>
<span class="ml-2" x-html="formatMoney(application.total_allocated_amount)"></span>
</p>
</template>
<p class="flex justify-between">
<span>Subtotal</span>
<span class="ml-2" x-html="formatMoney(state.total_price)"></span>
</p>
<p class="my-2 md:my-4 text-sm accent-links-scheme text-right"> Taxes calculated at checkout </p>
</div>
</div>
<div class="bottom-0 py-4 section-x-padding bg-scheme-background border-t-grid border-grid-color">
<div :class="{ 'opacity-50 cursor-wait': updating }">
<div class="text-right">
<div>
<input type="submit" name="checkout"
class="cursor-pointer py-2 px-4 w-full rounded-full bg-scheme-text text-scheme-text-overlay hover:bg-scheme-accent hover:text-scheme-accent-overlay border-scheme-text hover:border-scheme-accent border-text" :disabled="updating"
value="Check out">
</div>
</div>
</div>
</div>
<div class="py-4 section-x-padding">
<p class="text-sm"> *Is your business registered in the EU? Please create an account with your valid VAT number if you want to receive the EU reverse charge.</p>
<div class="text-sm mt-2">
<a class="inline-block hover:text-scheme-accent text-base items-center justify-center " href="/account/register" data-color-scheme="secondary">
<span class="">Create Account →</span>
</a>
</div>
</div>
</form>
GET /search
<form class="my-6 section-x-padding" action="/search" method="get" role="search">
<div class="flex w-full max-w-xs items-end">
<label for="sections--16821826289911__sidebar-search" class="visually-hidden">Search</label>
<input class="min-w-0 flex-auto bg-transparent border-current border-b-text placeholder-current py-1.5" id="sections--16821826289911__sidebar-search" type="text" name="q" placeholder="Search">
<button class="px-1" type="submit">
<span class="inline-block w-5 h-5"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M10.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
</path>
</svg></span>
<span class="visually-hidden">Submit</span>
</button>
</div>
</form>
GET /search
<form action="/search" method="get" class="input-group search" role="search">
<input type="hidden" name="options[prefix]" value="last"><label for="search-logo_center_menu_left-desktop" class="hidden">Submit</label>
<div class="flex items-center justify-between">
<button class="py-2 mr-4" aria-label="Submit" type="submit">
<span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M10.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
</path>
</svg></span>
<span class="visually-hidden">Submit</span>
</button>
<input id="search-logo_center_menu_left-desktop" type="search" name="q" value="" placeholder="Search" class="placeholder-current font-body w-full block bg-scheme-text text-scheme-background" aria-label="Search" data-search-input=""
aria-expanded="false" aria-owns="predictive-search-results-list" aria-controls="predictive-search-results-list" aria-autocomplete="list" autocorrect="off" autocomplete="off" autocapitalize="off" spellcheck="false" x-ref="input"
x-model="rawQuery" @input.debounce.300="onChange" @focus="onFocus">
<button class="py-2 ml-4" @click="close()" type="button">
<span class="visually-hidden">Close</span>
<span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-close" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M18.364 4.222l1.414 1.414L13.414 12l6.364 6.364-1.414 1.414L12 13.414l-6.364 6.364-1.414-1.414L10.586 12 4.222 5.636l1.414-1.414L12 10.586z"></path>
</svg></span>
</button>
</div>
<div id="predictiveSearchResults" tabindex="-1" class="predictive-search-results text-scheme-text absolute left-0 right-0 h-screen transition-colors ease-out duration-300 z-50">
<template x-if="loading && !results">
<div class="bg-scheme-background">
<div class="w-6 h-6 pt-12 pb-12 mx-auto" data-predictive-loading="">
<div class="loading"></div>
</div>
</div>
</template>
<template x-if="resultsOpen">
<div x-show="resultsOpen" class="border-b-grid border-grid-color max-h-three-quarters-screen-height overflow-hidden overflow-y-auto bg-scheme-background px-section" x-ref="results" @click.away.prevent="searchOpen = false">
</div>
</template>
</div>
<span class="predictive-search-status visually-hidden" role="status" aria-hidden="true"></span>
</form>
GET /search
<form action="/search" method="get" class="input-group search" role="search">
<input type="hidden" name="options[prefix]" value="last"><label for="search-logo_center_menu_left-mobile" class="hidden">Submit</label>
<div class="flex items-center justify-between">
<button class="py-2 mr-4" aria-label="Submit" type="submit">
<span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M10.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
</path>
</svg></span>
<span class="visually-hidden">Submit</span>
</button>
<input id="search-logo_center_menu_left-mobile" type="search" name="q" value="" placeholder="Search" class="placeholder-current font-body w-full block bg-scheme-text text-scheme-background" aria-label="Search" data-search-input=""
aria-expanded="false" aria-owns="predictive-search-results-list" aria-controls="predictive-search-results-list" aria-autocomplete="list" autocorrect="off" autocomplete="off" autocapitalize="off" spellcheck="false" x-ref="input"
x-model="rawQuery" @input.debounce.300="onChange" @focus="onFocus">
<button class="py-2 ml-4" @click="close()" type="button">
<span class="visually-hidden">Close</span>
<span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-close" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M18.364 4.222l1.414 1.414L13.414 12l6.364 6.364-1.414 1.414L12 13.414l-6.364 6.364-1.414-1.414L10.586 12 4.222 5.636l1.414-1.414L12 10.586z"></path>
</svg></span>
</button>
</div>
<div id="predictiveSearchResults" tabindex="-1" class="predictive-search-results text-scheme-text absolute left-0 right-0 h-screen transition-colors ease-out duration-300 z-50">
<template x-if="loading && !results">
<div class="bg-scheme-background">
<div class="w-6 h-6 pt-12 pb-12 mx-auto" data-predictive-loading="">
<div class="loading"></div>
</div>
</div>
</template>
<template x-if="resultsOpen">
<div x-show="resultsOpen" class="border-b-grid border-grid-color max-h-three-quarters-screen-height overflow-hidden overflow-y-auto bg-scheme-background px-section" x-ref="results" @click.away.prevent="searchOpen = false">
</div>
</template>
</div>
<span class="predictive-search-status visually-hidden" role="status" aria-hidden="true"></span>
</form>
Text Content
YOUR CART - 0 ITEMS Close Your cart is currently empty. Enable cookies to use the shopping cart : − Remove Regular price Sale price / − Discount Subtotal Taxes calculated at checkout *Is your business registered in the EU? Please create an account with your valid VAT number if you want to receive the EU reverse charge. Create Account → Close Menu Close * All Mockups * Apparel & Bags * Devices * Out of Home * Packaging * Print * More * FREE * Collections * Subscription * Pricing * Log in * Create account Search Submit Skip to content * All Mockups * Collections * Subscription * Pricing MOCKUP.MAISON Log in Search Submit Submit Close 0 items Menu MOCKUP.MAISON Search Submit Submit Close 0 items Put you and your work into the proper spotlight. Explore 1200+ high-quality PSD and video mockups across various categories. * Apparel & Bags * Devices * Out of Home * Packaging * Print * Videos * More * FREE * Search LATEST RELEASE DISPLAY 2 Collection with 23 NEW Mockups * Apple Watch Ultra WT-DSP2-01 Apple Watch Ultra WT-DSP2-01 $16.00 * iPad Pro 12.9" TB-DSP2-01 iPad Pro 12.9" TB-DSP2-01 $16.00 * MacBook Pro 16" LT-DSP2-02 MacBook Pro 16" LT-DSP2-02 $16.00 * iPhone Pro Max PH-DSP2-02 iPhone Pro Max PH-DSP2-02 $16.00 * MacBook Pro 16" LT-DSP2-05 MacBook Pro 16" LT-DSP2-05 $16.00 * iPad Pro 12.9" TB-DSP2-04 iPad Pro 12.9" TB-DSP2-04 $16.00 * Indoor Poster IP-DSP2-01 Indoor Poster IP-DSP2-01 $16.00 * iPad Pro 12.9" TB-DSP2-03 iPad Pro 12.9" TB-DSP2-03 $16.00 * Studio Display 27" DP-DSP2-08 Studio Display 27" DP-DSP2-08 $16.00 * iMac 24" DP-DSP2-04 iMac 24" DP-DSP2-04 $16.00 Show Full Collection From 5 Mockups → Get 20% Off From 10 Mockups → Get 30% Off From 20 Mockups → Get 40% Off From 5 Mockups → Get 20% Off From 10 Mockups → Get 30% Off From 20 Mockups → Get 40% Off From 5 Mockups → Get 20% Off From 10 Mockups → Get 30% Off From 20 Mockups → Get 40% Off From 5 Mockups → Get 20% Off From 10 Mockups → Get 30% Off From 20 Mockups → Get 40% Off * iPhone mini PH-E-08 iPhone mini PH-E-08 $16.00 * MacBook Pro 13" LT-E-03 MacBook Pro 13" LT-E-03 $16.00 * Magazine MZ-C-02 Magazine MZ-C-02 $16.00 * Street Poster UP-PAR-07 Street Poster UP-PAR-07 $16.00 * MacBook Pro 16" LT-G-01 MacBook Pro 16" LT-G-01 $16.00 * Book BK-B-01 Book BK-B-01 $16.00 * iPad Pro 11" TB-E-03 iPad Pro 11" TB-E-03 $16.00 * T-Shirt AP-E-03 T-Shirt AP-E-03 $16.00 * T-Shirt AP-D-04 T-Shirt AP-D-04 $16.00 * Tote Bag BG-B-01 Tote Bag BG-B-01 $16.00 * Magazine MZ-C-07 Magazine MZ-C-07 $16.00 * Magazine MZ-C-08 Magazine MZ-C-08 $16.00 * MacBook Pro 16" LT-G-03 MacBook Pro 16" LT-G-03 $16.00 * Urban Poster UP-LA-08 Urban Poster UP-LA-08 $16.00 * T-Shirt AP-D-05 T-Shirt AP-D-05 $16.00 * Show All Mockups POPULAR IN DEVICES * iPhone Mini * iPhone Pro * MacBook Pro * iPad Pro POPULAR IN OOH * Urban Poster * Billboard * Screen * A-Frame POPULAR IN PRINT * Book * Magazine * Business Card * Card LATEST RELEASES * Display 2 Collection * Display 1 Collection * Basel Collection * Laundry Collection EXPLORE * Cities * Scenes * Landscape Images * With Human Interactions © 2023, Mockup.Maison * All Mockups * Collections * Subscription * Pricing * Sign up for Newsletter * How to Use Our Mockups * Licensing * Terms & Conditions * Privacy Policy * Refund Policy * Contact Us * Instagram * Behance * Pinterest * LinkedIn * Choosing a selection results in a full page refresh. * Press the space key then arrow keys to make a selection.