The website includes a dynamic quote rotator powered by /assets/scripts/quotes.js. This file contains 185+ pop culture quotes from movies, games, and TV shows:
const quotes = [ { quote: "If it hasn't worked out yet, it's because it's not over yet", author: "MilesONerd" }, { quote: "Do... or do not. There is no try.", author: "Yoda" }, { quote: "I am Iron Man", author: "Tony Stark" }, // ... 182 more quotes];function getRandomQuote() { const randomIndex = Math.floor(Math.random() * quotes.length); return quotes[randomIndex];}function updateQuote() { const { quote, author } = getRandomQuote(); document.getElementById('random-quote').innerHTML = `“${quote}”`; document.getElementById('quote-author').innerHTML = `—${author}`;}
Hot Reload: Since this is a static HTML site, you can use VS Code’s Live Server extension for automatic browser refresh during development.
The website references external resources (Tailwind CDN, Font Awesome, Google Analytics). You’ll need an internet connection for these to load properly.
Now that you have the website running locally, you can:
1
Customize the content
Edit index.html to modify the hero section, update social links, or change the branding
2
Add new quotes
Extend the quotes array in /assets/scripts/quotes.js with your favorite quotes
3
Explore the blog system
Check out the /old/blog directory to understand the legacy blog implementation
4
Deploy your changes
Push to GitHub Pages or deploy to Netlify for live hosting
This website is a static HTML site with no build process required. All changes you make to HTML, CSS, or JavaScript files will be immediately visible when you refresh your browser.