/* eslint-disable */ // Section 06 — Featured Projects. Carousel of 3 projects, each split: // asymmetric collage (left 55%) + text panel (right 45%). const PROJECTS = [ { name: 'SLS Hotels', sub: 'The Red Sea, Shura Island', body: "Unicraft delivered a full interior fit-out of bespoke joinery for Shura Island, crafted to the highest hospitality standards. Using FSC-certified veneer and teak wood, low-impact MDF, and Sirka sustainable paints, the team met the island's strict environmental specifications. Despite sourcing challenges, all materials passed Red Sea Global's rigorous inspections.", tags: ['Hospitality', 'Interior fit-out', 'FSC-certified materials'], images: [ { src: 'assets/sls-suite-joinery.png', alt: 'SLS Hotels dining room with bespoke shelving and joinery', span: { col: '1 / 8', row: '1 / 3' }, cap: '// Dining hall, Shura Island' }, { tone: 'detail', src: 'assets/uc-wood-swatches.jpeg', span: { col: '8 / 13', row: '1 / 2' }, cap: '// Veneer & finish' }, { tone: 'grain', src: 'assets/uc-dining-chairs.jpeg', span: { col: '8 / 13', row: '2 / 3' }, cap: '// Bespoke seating' }, ], }, { name: 'Residence UC1010', sub: 'Private residence, Riyadh', body: "Engineered and executed the complete interior fit-out, including bespoke furniture, kitchens, and bedrooms. Working in close coordination with other members of Unicon Holding, the team crafted refined cabinetry featuring minimal 1 cm aluminum profiles, elegant glass integrations, and fully equipped show and service kitchens with premium accessories.", tags: ['Residential', 'Bespoke furniture', 'Kitchen fit-out'], images: [ { tone: 'light', src: 'assets/uc-interior-credenza.jpeg', span: { col: '1 / 7', row: '1 / 3' }, cap: '// Majlis cabinetry' }, { tone: 'raking', src: 'assets/uc-interior-armchair.jpeg', span: { col: '7 / 13', row: '1 / 2' }, cap: '// Lounge & lighting' }, { tone: 'workshop', src: 'assets/uc-finishing-grain.jpeg', span: { col: '7 / 10', row: '2 / 3' }, cap: '// Finishing' }, { tone: 'grain', src: 'assets/uc-editorial-books.jpeg', span: { col: '10 / 13', row: '2 / 3' }, cap: '// Detail' }, ], }, { name: 'Residence UC1020', sub: 'Private residence, 5,000 sqm', body: "Developed detailed joinery shop drawings that seamlessly integrated onyx, brass, and curved oak wood, elegantly enveloping the majlis area. A defining highlight is the main entrance door, standing four metres high, crafted from solid teak wood on the exterior and oak veneer on the interior.", tags: ['Residential', 'Majlis', 'Bespoke joinery', '5,000 sqm'], images: [ { tone: 'ash', src: 'assets/uc-heritage-table.jpeg', span: { col: '1 / 8', row: '1 / 3' }, cap: '// Solid teak & oak' }, { tone: 'light', src: 'assets/uc-about-bentwood.jpeg', span: { col: '8 / 13', row: '1 / 2' }, cap: '// Curved oak panel' }, { tone: 'detail', src: 'assets/uc-finish-samples.jpeg', span: { col: '8 / 13', row: '2 / 3' }, cap: '// Material palette' }, ], }, ]; const Projects = () => { const [idx, setIdx] = React.useState(0); const p = PROJECTS[idx]; const go = (i) => () => setIdx((i + PROJECTS.length) % PROJECTS.length); return (
Featured projects

Proof of work.

0{idx + 1} / 0{PROJECTS.length}
{p.images.map((img, i) => ( img.src ? (
{img.alt {img.cap && (
{img.cap}
)}
) : ( ) ))}
Project {`0${idx + 1}`}

{p.name}

{p.sub}

{p.body}

{p.tags.map((t) => ( {t} ))}
); }; Object.assign(window, { Projects });