Skip to content

essens-cc/mono

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mono

— a minimal web template with distinctive typography

Features

  • Ready-to-go web-template made with Astro;
  • Distinctive typography — Monaspace Neon;
  • Sustainable code and design;
  • Integrated astro collections;

Cover

Scores and Performance

Structure

Inside of your Astro project, you'll see the following folders and files:

/
├── public/
│   ├── css/
│   │   └── global.css
│   ├── favicon.svg
│   ├── fonts/
│   │   └── MonaspaceNeonVarVF.ttf
│   └── images/
│       ├── article.webp
│       └── cover.webp
├── src/
│   ├── components/
│   │   ├── Back.astro
│   │   ├── Header.astro
│   │   └── ListItem.astro
│   ├── content/
│   │   ├── blog/
│   │   │   ├── on-documentation.md
│   │   │   └── opt-in.md
│   │   └── pages/
│   │       ├── index.md
│   │       ├── now.md
│   │       ├── about.md
│   │       └── uses.md
│   ├── layouts/
│   │   └── Layout.astro
│   └── pages/
│       ├── index.astro
│       ├── now.astro
│       ├── about.astro
│       ├── uses.astro
│       └── journal/
│           ├── [...page].astro
│           └── [slug].astro
└── package.json

Article

Customization and development

Use any package manager you like to work with the repository. Use these commands.

Command Action
npm install Installs dependencies
npm run dev Starts local dev server at localhost:4321
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying
npm run astro ... Run CLI commands like astro add, astro check
npm run astro -- --help Get help using the Astro CLI