1267677510559929
// --- Animation Components ---
const AnimatedElement: React.FC<{
children: React.ReactNode;
className?: string;
delay?: number;
direction?: 'up' | 'left' | 'right' | 'fade';
}> = ({
children,
className = '',
delay = 0,
direction = 'up'
}) => {
const ref = useRef(null);
const [isVisible, setIsVisible] = useState(false);
useEffect(() => {
const el = ref.current;
if (!el) return;
const observer = new IntersectionObserver(
([entry]) => {
if (entry.isIntersecting) {
setTimeout(() => setIsVisible(true), delay);
observer.unobserve(el);
}
},
{ threshold: 0.1, rootMargin: '50px' }
);
My Garden 🌿
Herbs, oils, butters & botanicals used in The Trendy Goddess products
Calendula Uses: Supports dry, irritated, sensitive skin.
Found In: Miracle Healing Oil, skin repair products.
Lavender Uses: Calming, soothing, relaxing, skin comfort.
Found In: Bath teas, healing oils, self-care blends.
Chamomile Uses: Gentle calming support for sensitive skin.
Found In: Toners, bath tea, calming skincare.
Rosemary Uses: Scalp care, hair strength, refreshing herbal support.
Found In: Hair growth oil, hair treatments.
Ginger Uses: Warming botanical used for comfort and circulation support.
Found In: Bath blends, body care, wellness products.
Cayenne Pepper Uses: Warming ingredient traditionally used in body care blends.
Found In: Herbal oils, warming body products.
Turmeric Uses: Supports glow, uneven tone, and skin comfort.
Found In: Face care, body care, healing blends.
Roses Uses: Hydrating, softening, feminine floral care.
Found In: Feminine wash, facial care, glow products.
Rosehips Uses: Supports glow, softness, and mature skin care.
Found In: Face oils, healing oils, skincare blends.
Peppermint Uses: Cooling, refreshing, soothing feel.
Found In: Lip care, hair care, bath products.
Mugwort Uses: Spiritual, grounding, ritual-based botanical.
Found In: Spiritual products, bath rituals, altar blends.
Nettle Uses: Scalp support, hair nourishment, herbal strength.
Found In: Hair growth oil, scalp treatments.
Jojoba Oil Uses: Lightweight moisture that supports skin balance.
Found In: Face oils, moisturizers, hair oils.
Almond Oil Uses: Softens, nourishes, and hydrates dry skin.
Found In: Body oils, shave butter, skincare blends.
Aloe Uses: Cooling hydration and soothing skin support.
Found In: Face wash, moisturizers, skin care products.
Cocoa Butter Uses: Rich moisture for dry, rough skin.
Found In: Body butter, shave butter, lip care.
Mango Butter Uses: Softening, creamy moisture for skin and hair.
Found In: Body butter, shave butter, moisturizers.
Coconut Oil Uses: Locks in moisture and softens skin and hair.
Found In: Lip oil, body care, hair products.
top of page
Tarot Tuesdays Tue, Apr 29
| Live stream
EVERY Tuesday join me for a live session of FREE tarot readings
Time & Location Apr 29, 2025, 9:30 AM – 10:30 AM
Live stream
About the event Bring your questions and an open heart. Whether you're seeking guidance on love, career, or personal growth, Amberlyn will help illuminate your path, revealing insights that may surprise you. Tarot isnt set in stone, however, they provide us with a different perspective on our situations and a potentially different path.
Show More
bottom of page