This project is an academic homepage template built with Next.js, Tailwind CSS, and ShadcnUI. The design is minimalistic and modern, providing a clean and professional look for academic portfolios. It supports deployment to Zeabur and can directly parse .bib files to display publications.

.bib files.Your data is divided into three parts:
public folder: Stores your images and CV files.data folder: Stores your MDX files and .bib files.website.config.js: Contains your personal information and social media links.We use .mdx files to write content, which is an extension of markdown files. You can use markdown syntax to write your content.
MDX files in the data/projects directory need to include frontmatter at the top in the following format:
---
title: "FibeRobo"
description: "Fabricating 4D Fiber Interfaces by Continuous Drawing of Temperature Tunable Liquid Crystal Elastomers"
date: "2023-01-01"
image: "/project1.jpg"
---
The image can be stored in the public folder.
Place your .bib file in the data/bib directory. The application will automatically parse the file and display your publications. Make sure to name the .bib file as Publications.bib or SelectedPublications.bib for correct parsing.
And if your paper is awarded, you can addaward={Best Paper Award} or award={Hornorable Mention}to your bibtex.
Clone the repository
git clone https://github.com/anxndsgn/academic-homepage-template.git
cd academic-homepage-templateInstall dependencies
Using pnpm:
pnpm iTo start the development server, run:
pnpm run devOpen http://localhost:3000 in your browser to see the result.
Contributions are welcome! Please open an issue or submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.