Personal portfolio website for Ian Alloway - Data Scientist and AI Specialist.
Live Site: https://ianalloway.xyz
- Vite - Build tool
- TypeScript - Type safety
- React - UI framework
- shadcn-ui - Component library
- Tailwind CSS - Styling
# Install dependencies
npm install
# Start development server
npm run dev
# Build for production
npm run buildTo add new academic papers to the portfolio:
-
Add the PDF file to
/public/papers/directory with a clean filename (e.g.,my-paper-title.pdf) -
Update the papers array in
src/pages/Index.tsxby adding a new entry to theacademicPapersarray:
const academicPapers = [
// ... existing papers ...
{
title: 'Your Paper Title',
description: 'Brief description of the paper',
file: '/papers/your-paper-filename.pdf',
category: 'Capstone',
},
];- Commit and push your changes - the site will automatically deploy.
The site is deployed via Lovable and connected to the custom domain https://ianalloway.xyz
Built with ❤️ by Ian Alloway