apvarun / systic-astro-theme

Astro theme to create a curated list page.

Home Page:https://systic.vercel.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸš€ Systic

Systic is an Astro theme to create a curated list page.

Features


Systic Theme Screenshot


Table of Contents

Demo

https://systic.vercel.app


Getting started

Project structure

Inside Systic template, you'll see the following folders and files:

/
β”œβ”€β”€ public/
β”‚   β”œβ”€β”€ robots.txt
β”‚   └── favicon.ico
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ assets/
β”‚   β”‚   β”œβ”€β”€ images/
|   |   └── styles/
|   |       └── base.css
β”‚   β”œβ”€β”€ data/
|   |   └── items/
|   |       β”œβ”€β”€ item-slug-1.md
|   |       └── ...
β”‚   β”œβ”€β”€ components/
β”‚   β”‚   β”œβ”€β”€ core/
|   |   └── widgets/
|   |       β”œβ”€β”€ Header.astro
|   |       β”œβ”€β”€ Footer.astro
|   |       └── ...
β”‚   β”œβ”€β”€ layouts/
β”‚   |   |── BaseLayout.astro
β”‚   |   └── ...
β”‚   β”œβ”€β”€ pages/
β”‚   |   β”œβ”€β”€ [item]/
|   |   |   └── [slug].astro
β”‚   |   β”œβ”€β”€ index.astro
|   |   β”œβ”€β”€ 404.astro
|   |   β””-- rss.xml.js
β”‚   β”œβ”€β”€ utils/
β”‚   └── config.mjs
β”œβ”€β”€ package.json
└── ...

Astro looks for .astro or .md files in the src/pages/ directory. Each page is exposed as a route based on its file name.

There's nothing special about src/components/, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

Any static assets, like images, can be placed in the public/ directory if they do not require any transformation or in the assets/ directory if they are imported directly.

Edit Systic on CodeSandbox


Commands

All commands are run from the root of the project, from a terminal:

Command Action
npm install Installs dependencies
npm run dev Starts local dev server at localhost:3000
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying

Deploy

Deploy to production (manual)

You can create an optimized production build with:

npm run build

Now, your website is ready to be deployed. All generated files are located at dist folder, which you can deploy the folder to any hosting service you prefer.

Deploy to Netlify

Clone this repository on own GitHub account and deploy to Netlify:

Netlify Deploy button

Deploy to Vercel

Clone this repository on own GitHub account and deploy to Vercel:

Deploy with Vercel


Contributing

If you have any idea, suggestions or find any bugs, feel free to open a discussion, an issue or create a pull request. That would be very useful for all of us and we would be happy to listen and take action.

License

Systic is licensed under the MIT license β€” see the LICENSE file for details.

About

Astro theme to create a curated list page.

https://systic.vercel.app/

License:MIT License


Languages

Language:Astro 44.2%Language:JavaScript 30.5%Language:Svelte 23.4%Language:CSS 1.5%Language:TypeScript 0.4%