// Layershop.eu โ simpele site met focus op de shop
// Made in Noord-Brabant, NL
const SHOPIFY_URL = "https://layershop-2.myshopify.com/";
// ---------- Layer stripe pattern ----------
function LayerStripes({ color = "#F04E23", opacity = 0.18, gap = 6, stroke = 1.2, angle = 0, style = {} }) {
const id = React.useId();
return (
);
}
// ---------- Product placeholder ----------
function ProductPlaceholder({ label, idx = 0 }) {
const variants = [
{ bg: "#FBF7F2", fg: "#1E2A8A", stripe: "#F04E23" },
{ bg: "#1E2A8A", fg: "#FBF7F2", stripe: "#F04E23" },
{ bg: "#F04E23", fg: "#FBF7F2", stripe: "#FBF7F2" },
{ bg: "#FBF7F2", fg: "#0E1330", stripe: "#1E2A8A" },
];
const v = variants[idx % variants.length];
return (
);
}
// ---------- Top nav ----------
function Nav() {
const [open, setOpen] = React.useState(false);
React.useEffect(() => {
document.body.style.overflow = open ? "hidden" : "";
return () => { document.body.style.overflow = ""; };
}, [open]);
return (
layershop.eu
{/* Desktop nav โ unchanged */}
{[
{ href: "index.html", label: "Home" },
{ href: "over-ons.html", label: "Over ons" },
{ href: "offerte.html", label: "Offerte" },
{ href: "contact.html", label: "Contact" },
].map(item => {
const active = window.location.pathname.endsWith(item.href) || (item.href === "index.html" && (window.location.pathname === "/" || window.location.pathname.endsWith("index.html")));
return (
{item.label}
);
})}
Naar de shop
{/* Mobile hamburger button */}
setOpen(true)}
aria-label="Menu openen"
style={{
background: "transparent", border: "1px solid rgba(14,19,48,0.18)",
width: 44, height: 44, borderRadius: 999, cursor: "pointer",
alignItems: "center", justifyContent: "center", padding: 0
}}
>
{/* Mobile drawer (right side) */}
{open && (
<>
{/* Backdrop โ solid beige with layer stripes (matches homepage) */}
setOpen(false)} style={{
position: "fixed", inset: 0, zIndex: 99,
background: "#FBF7F2", overflow: "hidden",
animation: "lsFadeIn .15s ease-out"
}}>
{/* Drawer panel */}
{/* Drawer header */}
setOpen(false)}
aria-label="Menu sluiten"
style={{
background: "transparent", border: "1px solid rgba(14,19,48,0.18)",
width: 40, height: 40, borderRadius: 999, cursor: "pointer",
display: "inline-flex", alignItems: "center", justifyContent: "center", padding: 0
}}
>
{/* Menu items */}
{[
{ label: "Home", href: "index.html" },
{ label: "Over ons", href: "over-ons.html" },
{ label: "Offerte", href: "offerte.html" },
{ label: "Contact", href: "contact.html" },
].map((item) => {
const active = window.location.pathname.endsWith(item.href) || (item.href === "index.html" && (window.location.pathname === "/" || window.location.pathname.endsWith("index.html")));
return (
setOpen(false)} style={{
fontFamily: "'Space Grotesk', sans-serif", fontWeight: 600,
fontSize: 22, letterSpacing: -0.5,
color: active ? "#F04E23" : "#0E1330",
textDecoration: "none", padding: "14px 4px",
borderBottom: "1px solid rgba(14,19,48,0.08)",
display: "block"
}}>
{item.label}
);
})}
setOpen(false)}
style={{
marginTop: 24, fontFamily: "'Inter', sans-serif", fontSize: 15, fontWeight: 600,
background: "#F04E23", color: "#fff", padding: "14px 20px", borderRadius: 999,
textDecoration: "none", display: "inline-flex", alignItems: "center", justifyContent: "center", gap: 10,
boxShadow: "0 6px 20px rgba(240,78,35,0.3)"
}}>
Naar de shop
{/* Drawer footer */}
MADE IN NOORD-BRABANT, NL
>
)}
);
}
const navLink = {
fontFamily: "'Inter', sans-serif", fontSize: 14, fontWeight: 500,
color: "#0E1330", textDecoration: "none"
};
// ---------- Hero ----------
function Hero() {
return (
MADE IN NOORD-BRABANT, NL
Premium 3D prints,
laag voor laag
geprint in NL.
Unieke cadeaus en decoratie-items, ontworpen en geprint in onze studio in Noord-Brabant.
{/* Scroll cue */}
SCROLL
);
}
function HeroVisual() {
return (
);
}
// ---------- Trust strip ----------
function TrustStrip() {
const items = [
["๐", "Geprint in Noord-Brabant"],
["๐", "Levering in NL & Belgiรซ"],
["โฑ", "Gemiddeld 3 dagen levertijd"],
["โ๏ธ", "Custom op aanvraag"],
];
return (
{items.map(([icon, text]) => (
{icon}
{text}
))}
);
}
// ---------- About ----------
function About() {
return (
OVER LAYERSHOP
Een 3D Print studio in Noord-Brabant.
Layershop print al haar producten zelf, in eigen studio in Noord-Brabant. Geen massa-productie โ wel scherp geprijsde, doordachte cadeaus en decoratie-items waar je elke dag plezier van hebt.
We werken met PLA en PETG โ beide duurzaam en geschikt voor binnen- of buitengebruik.
Bezoek de shop
);
}
// ---------- Contact (custom request โ kleine zijlijn) ----------
function Contact() {
return (
);
}
// ---------- Footer ----------
function Footer() {
return (
ยฉ 2026 LAYERSHOP.EU ยท KVK 89199073
);
}
// ---------- Root ----------
function Site() {
return (
);
}
window.Site = Site;
window.Nav = Nav;
window.Footer = Footer;
window.LayerStripes = LayerStripes;
window.SHOPIFY_URL = SHOPIFY_URL;