20 lines
926 B
PHP
20 lines
926 B
PHP
<?php
|
|
$images = [
|
|
'/Users/hamzaaleghwairyeen/.gemini/antigravity/brain/2d71f096-6b0b-4c15-81ce-185c9abe4e1f/dashboard_hero_new2_1778279794943.png' => __DIR__ . '/public/assets/img/dashboard_hero.png',
|
|
'/Users/hamzaaleghwairyeen/.gemini/antigravity/brain/2d71f096-6b0b-4c15-81ce-185c9abe4e1f/investor_hero_new_1778279595637.png' => __DIR__ . '/public/assets/img/investor_hero.png',
|
|
'/Users/hamzaaleghwairyeen/.gemini/antigravity/brain/2d71f096-6b0b-4c15-81ce-185c9abe4e1f/mobile_mockup_new_1778279606331.png' => __DIR__ . '/public/assets/img/mobile_mockup.png'
|
|
];
|
|
|
|
foreach ($images as $src => $dst) {
|
|
if (!file_exists($src)) {
|
|
echo "Source not found: $src\n";
|
|
continue;
|
|
}
|
|
if (copy($src, $dst)) {
|
|
echo "Successfully copied to $dst\n";
|
|
} else {
|
|
$error = error_get_last();
|
|
echo "Failed to copy to $dst: " . ($error['message'] ?? 'Unknown error') . "\n";
|
|
}
|
|
}
|