makeasite

Vector Graphics from Freepik

This directory contains vector graphics downloaded from Freepik.

How to Add Vectors

  1. Visit Freepik Vectors
  2. Search for relevant vectors like:
    • Business illustrations
    • Technology icons
    • Abstract patterns
    • Decorative elements
    • Background patterns
  3. Download SVG or PNG formats
  4. Place them in this directory
  5. Reference them in your components

Usage Example:

<img 
  src="/vectors/hero-illustration.svg" 
  alt="Hero Illustration" 
  className="w-full h-auto"
/>

SVG as Background:

.section {
  background-image: url('/vectors/pattern.svg');
  background-size: cover;
}