Find & Edit a Component
src/components/All components live here
src/pages/Page-level components
Ctrl+Shift+FSearch all files in VS Code
Ctrl+PFind file by name (VS Code)
Component Anatomy
import X from './X'Bring in a component
export default XMake component usable
const [x, setX] = useState()Local state
useEffect(() => {}, [])Run on load
Your Key Components
SupabaseVideoGalleryPulls videos from DB
WhyParentsTrustTestimonials section
MagneticButtonAnimated CTA button
TextRevealAnimationHeadline animation
Modify a Class Globally
index.cssCSS vars + components
tailwind.config.jsColors, fonts, spacing
Tip: Change a color in tailwind.config.js and it updates everywhere that class is used — no find/replace needed.