This is a static portfolio website built using Astro, TypeScript, and TailwindCSS. It showcases personal projects, skills, and blog posts using markdown files.
- Responsive design using TailwindCSS
- Blog section with posts written in Markdown
- Project showcase
- Skills display
- Education and work experience timeline
- Social media links
We chose Astro for this portfolio website for several key reasons:
- Performance: Astro generates static HTML, resulting in extremely fast load times and improved SEO.
- Component Islands: Astro allows us to use interactive components only where needed, keeping the rest of the site lightweight.
- Framework Flexibility: While we're primarily using TypeScript, Astro allows integration with various front-end frameworks if needed in the future.
- Built-in Optimizations: Astro provides out-of-the-box optimizations for images, styles, and scripts.
We use Markdown files for blog posts, which are fetched and processed at build time. This approach offers several advantages:
- Content Separation: Keeping content in Markdown files separates it from the code, making it easier to manage and update.
- Build-time Processing: By processing Markdown at build time, we ensure fast page loads without the need for client-side rendering of content.
- Version Control: Markdown files can be easily version-controlled, allowing us to track changes to content over time.
- Easy Authoring: Markdown is a simple and widely-used format, making it easy to create and edit blog posts without needing to understand the underlying code.
This setup allows for a streamlined content creation process while maintaining the benefits of a static site, resulting in a fast, efficient, and easily maintainable portfolio website.
/
├── src/
│ ├── components/
│ ├── content/
│ │ └── blog/
│ │ ├── post-1.mdx
│ │ ├── post-2.mdx
│ │ └── post-3.mdx
│ ├── data/
│ │ └── config.ts
│ ├── layouts/
│ ├── pages/
│ │ ├── blog/
│ │ │ ├── [slug].astro
│ │ │ └── index.astro
│ │ └── index.astro
├── public/
└── package.json
- Clone the repository:
git clone https://github.com/jalolk/portfolio.git
- Navigate to the project directory:
cd portfolio
- Install dependencies:
npm install
To add your own data and customize the portfolio:
-
Config File:
- Open
src/data/config.ts
- Update the
config
object with your personal information, including name, tagline, social links, etc.
- Open
-
Blog Posts:
- Add your Markdown files to
src/content/blog/
- Each file should have front matter with title, date, and any other relevant metadata
- Add your Markdown files to
-
Projects:
- In
src/data/config.ts
, update theprojects
array in theconfig
object - Add your project details including title, description, image, and links
- In
-
Skills:
- Update the
skills
array insrc/data/config.ts
with your skillset - You can import icons from
simple-icons-astro
for visual representation
- Update the
-
Experience and Education:
- Modify the
profile
array insrc/data/config.ts
to reflect your experience and education
- Modify the
-
Styling:
- Customize the look and feel by modifying the Tailwind classes in the component files located in
src/components/
- Customize the look and feel by modifying the Tailwind classes in the component files located in
-
Images:
- Place your images in the
public/images/
directory and reference them in your config and markdown files
- Place your images in the
After making your changes, run npm run dev
to see your updates in real-time.
Contributions make the open-source world go round! Got a cool idea? Fork the repo, make it happen, and send a pull request our way. Or just open an issue with an "enhancement" tag—simple as that!
Don't forget to star the project ⭐️—it’s like a virtual high-five! 🙌
- Fork it 🍴
- Create your branch (git checkout -b feature/CoolStuff) 🌱
- Commit your magic (git commit -m 'Add some CoolStuff') ✨
- Push it (git push origin feature/CoolStuff) 🚀
- Open a pull request 🎉
Contribution Guidelines:
- No extra baggage—keep dependencies light. 🧳
- Update the README—no one likes being left in the dark. 🕵️♂️
- Bump those version numbers! 📈
- Get two thumbs-up 👍👍 from other devs before merging. If you can’t, phone a friend!
- Thanks a bunch!
Feel free to check Astro documentation or jump into their Discord server.
This project is open source and available under the MIT License.