This is a Base44 React application, not a traditional WordPress theme. Your portfolio is hosted on Base44's platform and can be connected to your custom domain from Namecheap.
yourappname.base44.comyourname.com)A Record@Simply chat with the AI assistant and request changes:
Navigate to the file you want to edit in the Base44 file browser:
File: components/portfolio/HeroSection.js
Find these lines at the top of the file:
const backgroundType = 'gradient'; // Change to: 'video', 'image', or 'gradient' const backgroundVideo = 'your-video-url.mp4'; const backgroundImage = 'your-image-url.jpg';
Replace the URLs with your own video or image, then change backgroundType to your choice.
File: components/portfolio/HeroSection.js
File: components/portfolio/ContactSection.js
Find the contactInfo array (around line 20):
const contactInfo = [
{ icon: Mail, label: 'your-email@example.com' },
{ icon: Phone, label: '+1 (555) 123-4567' },
{ icon: MapPin, label: 'Your City, State' },
];File: components/portfolio/VideoShowcase.js
Find the videos array (around line 6):
const videos = [
{
id: 1,
title: 'Your Video Title',
category: 'Commercial',
thumbnail: 'https://your-image-url.jpg',
},
// Add more videos here
];File: components/portfolio/PhotoGallery.js
Find the photos array (around line 6):
const photos = [
{
id: 1,
url: 'https://your-photo-url.jpg',
title: 'Photo Title',
category: 'Landscape',
},
// Add more photos here
];File: components/portfolio/AboutSection.js
Current accent color is #aeff00 (neon green).
To change it, use Find & Replace in Base44:
#aeff00#ff6b6b for red)File: components/portfolio/Navigation.js
Find line ~30:
<span className="text-[#aeff00]">•</span> Portfolio
Change "Portfolio" to your name or brand.
components/portfolio/ ├── Navigation.js → Top menu bar ├── HeroSection.js → Main landing section with background ├── VideoShowcase.js → Video portfolio grid ├── PhotoGallery.js → Photo portfolio grid ├── AboutSection.js → About section with bio └── ContactSection.js → Contact form and info pages/ └── Home.js → Main page that combines all sections
No, this is a React application, not WordPress. It's hosted on Base44's platform but can use your custom domain.
Ask the AI assistant: "Add a video player modal when clicking video thumbnails"
Yes! Ask the AI: "Add a blog section with posts" and it will create one for you.
Ask the AI: "Connect the contact form to send emails" and it will set up email integration.