This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState, useCallback } from "react"; | |
import { | |
Menu, | |
X, | |
Home, | |
Thermometer, | |
Lightbulb, | |
Lock, | |
Sun, | |
Zap, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState } from 'react'; | |
import { motion, AnimatePresence } from 'framer-motion'; | |
import { ChevronLeft, ChevronRight } from 'lucide-react'; | |
// --- Mock Data for Cakes --- | |
const cakeData = [ | |
{ | |
id: 1, | |
name: 'Velvet Strawberry', | |
description: 'Layers of fluffy sponge, fresh strawberries, and light-as-air vanilla cream.', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState } from "react"; | |
import { motion, AnimatePresence } from "framer-motion"; | |
import { ChevronLeftIcon, ChevronRightIcon } from "lucide-react"; | |
// --- DRONE DATA --- | |
const DRONES = [ | |
{ | |
id: 1, | |
model: "Titan S-V", | |
name: "The Heavy Lift", |