From 9faeb640c79c95ee62b2d78222ce8bb5a8ad0fb5 Mon Sep 17 00:00:00 2001 From: App Generator Date: Sat, 7 Aug 2021 16:57:20 +0300 Subject: [PATCH] Release v1.0.0 --- CHANGELOG.md | 8 +++++++ README.md | 62 +++++++++++++++++++++++++++++++++++++--------------- package.json | 4 ++-- 3 files changed, 54 insertions(+), 20 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8d5c1bf --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +# Change Log + +## [1.0.0] 2021-08-07 +### Initial Import + +- UI: [Soft Design UI](https://bit.ly/3v6JYIe) v1.0.5 + - Clone timestamp: 2021-07-01 +- Codebase: [Eveventy Starter](https://github.com/app-generator/boilerplate-code-11ty) v0.0.2 diff --git a/README.md b/README.md index 6600151..60563d2 100644 --- a/README.md +++ b/README.md @@ -1,40 +1,63 @@ # Eleventy Soft UI Design -![Thumbnail Image](/thumbnail.jpg) +[Eleventy Soft UI](https://appseed.us/product/eleventy-soft-ui) is an Eleventy adaptation of Soft UI Design System (a user-friendly and beautiful design system based on Bootstrap 5), including a Blog system that uses Prismic CMS for content management. Soft UI Design System is built with over 70 frontend individual elements, like buttons, inputs, navbars, nav tabs, cards, or alerts, giving you the freedom of choosing and combining. All components can take variations in color, which you can easily modify using SASS files and classes. -Eleventy Soft UI Design is an Eleventy adaptation of Soft UI Design System (a user-friendly and beautiful design system based on Bootstrap 5), including a Blog system that uses Prismic CMS for content management. +> Features: -> Soft UI Design System is built with over 70 frontend individual elements, like buttons, inputs, navbars, nav tabs, cards, or alerts, giving you the freedom of choosing and combining. All components can take variations in color, which you can easily modify using SASS files and classes. -> -> You will save a lot of time going from prototyping to full-functional code because all elements are implemented. This Freebie Bootstrap 5 UI Kit is coming with prebuilt design blocks, so the development process is seamless, switching from our pages to the real website is very easy to be done. +- UI: [Soft UI Design System](https://bit.ly/3v6JYIe) crafted by **Creative-Tim** +- **Prismic CMS** for blog posts +- CSS Pipeline (Sass, CleanCSS) +- JS Bundling (Webpack) +- SVG Icon Sprite Generation +- Critical CSS, HTML Minification
-## [Live demo]() +> Links + +- [Eleventy Soft UI](https://appseed.us/product/eleventy-soft-ui) - product page +- [Eleventy Soft UI](https://eleventy-soft-ui.appseed-srv1.com/) - LIVE Demo
-## Features: +## Compile from Sources + +> **Step #1** - Clone this repository -- Eleventy Soft UI Design System -- Prismic CMS for blog posts -- CSS Pipeline (Sass, CleanCSS) -- JS Bundling (Webpack) -- SVG Icon Sprite Generation -- Critical CSS, HTML Minification -- Includes a assets folder for static files (images, fonts etc.) +```bash +$ git clone https://github.com/app-generator/eleventy-soft-ui-design.git +$ cd eleventy-soft-ui-design +```
-## Documentaion +> **Step #2** - Install modules via NPM or Yarn -The documentation for Eleventy Soft UI Design is hosted [here](). +```bash +$ npm i +// OR +$ yarn +```
-## License +> **Step #3** - Configure [Prismic](http://prismic.io/) API Node -This project is licensed under the MIT License. +Rename `.env.sample` to `.env` and specify the `PRISMIC_REPOSITORY_NAME`. In case you are not familiar with `Prismic`, feel free to use the `DEMO API` provided by AppSeed: `https://eleventy-soft-ui-design.prismic.io/api/v2` + +```env +PRISMIC_REPOSITORY_NAME=YOUR_PRISMIC_API_URL +``` + +
+ +> **Step #4** - Start project in development mode + +```bash +$ yarn start +``` + +Once the project is compiled and the content is pulled from `Prismic`, the project can be visited in the browser: `http://localhost:8080`.
@@ -76,3 +99,6 @@ eleventy-soft-ui-design ```
+ +--- +[Eleventy Soft UI](https://appseed.us/product/eleventy-soft-ui) - provided by AppSeed [App Generator](https://appseed.us) diff --git a/package.json b/package.json index d504c11..c9ae5e9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "author": "AppSeed", "name": "eleventy-soft-ui-design", - "version": "0.0.1", + "version": "1.0.0", "description": "11ty Starter - Template Project", "browserslist": [ "defaults" @@ -55,4 +55,4 @@ "svg-sprite": "^1.5.0", "webpack": "^5.28.0" } -} +} \ No newline at end of file