Enterprise Website Template
A modern enterprise website template built with Next.js and Tailwind CSS, supporting static site generation (SSG).
Framework | Next.js |
Use Case | Brand Websites |
A modern enterprise website template built with Next.js and Tailwind CSS, supporting static site generation (SSG).
/
)/about
)/services
)/news
)/blog
)/team
)/careers
)/contact
)/get-started
)git clone [project address]
cd [project directory]
npm install
# or
yarn install
npm run dev
# or
yarn dev
npm run build
# or
yarn build
The project provides a script to integrate with Contentful CMS, which can pull blog data from Contentful to Markdown.
The project provides a data structure that can be directly imported into Contentful:
contentful space import --content-file contentful-export.json --space-id ${your-space-id}
Configure environment variables locally:
โโโ public/ # Static resources
โโโ src/
โ โโโ components/ # Components
โ โ โโโ cards/ # Card components
โ โ โโโ layouts/ # Layout components
โ โ โโโ ui/ # UI components
โ โโโ config/ # Configuration files
โ โโโ pages/ # Pages
โ โโโ styles/ # Style files
โโโ .eslintrc.js # ESLint configuration
โโโ .prettierrc # Prettier configuration
โโโ next.config.js # Next.js configuration
โโโ tailwind.config.js # Tailwind configuration
The project uses multiple configuration files to manage data:
config/articles.ts
: Blog article dataconfig/careers.ts
: Job informationconfig/get-started.ts
: Quick start guideconfig/team.ts
: Team member information