Get Started in a breeze
Getting started with Atoria is easy! First, you'll need to include the Atoria CSS file in your project. You can do this by adding a CDN link to the Atoria CSS file in the head of your HTML file:
html
# add this line and replace the version with your prefered version. currently version 0.1.0 is the latest
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@atoria/css@<version>/dist/index.css">
Alternatively, you can also install Atoria using npm by running the following command in your terminal:
bash
# install using npm
npm i @atoria/css
# install using pmpm
pnpm install @atoria/css
# install using yarn
yarn add @atoria/css
Once Atoria is installed, you can import the CSS file into your project using a CSS import statement:
css
@import '/path/to/index.css';
# or use the cdn version
@inport url('https://cdn.jsdelivr.net/npm/@atoria/css@<version>/.css/index.css')