This project is an academic homepage 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 Github Pages and can directly parse .bib
files to display publications. The website is modified from this template.
- Minimalistic Design: Clean and modern interface to showcase academic work.
- Markdown Support: Write website content using markdown files.
- Dark Mode: Supports dark mode for a comfortable viewing experience.
- Responsive Design: Fully responsive and mobile-friendly.
- Bib File Parsing: Directly parse and display publications from
.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.
- Node.js (version 14.x or higher)
- pnpm
-
Clone the repository
git clone https://github.com/anxndsgn/academic-homepage-template.git cd academic-homepage-template
-
Install dependencies
Using pnpm:
pnpm i
To start the development server, run:
pnpm run dev
Open 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.
- Template
- Next.js
- Tailwind CSS
- ShadcnUI