// Dietello Logo — two concepts × two layouts
//
// Concept A · Leaf — organic, curved leaf with center vein + AI sparkle
// Concept B · D-spark — geometric monogram "d" with a lime sparkle inside
// the bowl (also reads as a caring face/bowl)
//
// Layouts: horizontal (mark + wordmark inline) and square (mark above wordmark)
// ──────────────────────────────────────────────────────────
// CONCEPT A — Leaf mark
// ──────────────────────────────────────────────────────────
function LogoMark({ size = 64, fill = '#181612', accent = '#D4FF4F', sparkle = '#FF6A4D', flat = false }) {
return (
);
}
// ──────────────────────────────────────────────────────────
// CONCEPT B — D-spark monogram
// Geometric lowercase "d": vertical stem on the right + a circle bowl
// on the left, with a lime sparkle inside the bowl.
// Reads as: letter d / a face profile / a plate seen from side.
// ──────────────────────────────────────────────────────────
function LogoMarkAlt({ size = 64, fill = '#181612', accent = '#D4FF4F', sparkle = '#FF6A4D', flat = false }) {
// viewBox 64×64
// Bowl: circle at (24, 36) r=18
// Stem: rect on right side, from y=8 to y=54, x=42..52
return (
);
}
// ──────────────────────────────────────────────────────────
// Wordmark
// ──────────────────────────────────────────────────────────
function Wordmark({ size = 24, color = '#181612', dotColor = '#D4FF4F' }) {
return (