Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 9faeb64

Browse files
author
App Generator
committed
Release v1.0.0
1 parent 5649037 commit 9faeb64

File tree

3 files changed

+54
-20
lines changed

3 files changed

+54
-20
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
## [1.0.0] 2021-08-07
4+
### Initial Import
5+
6+
- UI: [Soft Design UI](https://bit.ly/3v6JYIe) v1.0.5
7+
- Clone timestamp: 2021-07-01
8+
- Codebase: [Eveventy Starter](https://github.com/app-generator/boilerplate-code-11ty) v0.0.2

README.md

Lines changed: 44 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,63 @@
11
# Eleventy Soft UI Design
22

3-
![Thumbnail Image](/thumbnail.jpg)
3+
[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.
44

5-
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.
5+
> Features:
66
7-
> 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.
8-
>
9-
> 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.
7+
- UI: [Soft UI Design System](https://bit.ly/3v6JYIe) crafted by **Creative-Tim**
8+
- **Prismic CMS** for blog posts
9+
- CSS Pipeline (Sass, CleanCSS)
10+
- JS Bundling (Webpack)
11+
- SVG Icon Sprite Generation
12+
- Critical CSS, HTML Minification
1013

1114
<br />
1215

13-
## [Live demo]()
16+
> Links
17+
18+
- [Eleventy Soft UI](https://appseed.us/product/eleventy-soft-ui) - product page
19+
- [Eleventy Soft UI](https://eleventy-soft-ui.appseed-srv1.com/) - LIVE Demo
1420

1521
<br />
1622

17-
## Features:
23+
## Compile from Sources
24+
25+
> **Step #1** - Clone this repository
1826
19-
- Eleventy Soft UI Design System
20-
- Prismic CMS for blog posts
21-
- CSS Pipeline (Sass, CleanCSS)
22-
- JS Bundling (Webpack)
23-
- SVG Icon Sprite Generation
24-
- Critical CSS, HTML Minification
25-
- Includes a assets folder for static files (images, fonts etc.)
27+
```bash
28+
$ git clone https://github.com/app-generator/eleventy-soft-ui-design.git
29+
$ cd eleventy-soft-ui-design
30+
```
2631

2732
<br />
2833

29-
## Documentaion
34+
> **Step #2** - Install modules via NPM or Yarn
3035
31-
The documentation for Eleventy Soft UI Design is hosted [here]().
36+
```bash
37+
$ npm i
38+
// OR
39+
$ yarn
40+
```
3241

3342
<br />
3443

35-
## License
44+
> **Step #3** - Configure [Prismic](http://prismic.io/) API Node
3645
37-
This project is licensed under the MIT License.
46+
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`
47+
48+
```env
49+
PRISMIC_REPOSITORY_NAME=YOUR_PRISMIC_API_URL
50+
```
51+
52+
<br />
53+
54+
> **Step #4** - Start project in development mode
55+
56+
```bash
57+
$ yarn start
58+
```
59+
60+
Once the project is compiled and the content is pulled from `Prismic`, the project can be visited in the browser: `http://localhost:8080`.
3861

3962
<br />
4063

@@ -76,3 +99,6 @@ eleventy-soft-ui-design
7699
```
77100

78101
<br />
102+
103+
---
104+
[Eleventy Soft UI](https://appseed.us/product/eleventy-soft-ui) - provided by AppSeed [App Generator](https://appseed.us)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"author": "AppSeed",
33
"name": "eleventy-soft-ui-design",
4-
"version": "0.0.1",
4+
"version": "1.0.0",
55
"description": "11ty Starter - Template Project",
66
"browserslist": [
77
"defaults"
@@ -55,4 +55,4 @@
5555
"svg-sprite": "^1.5.0",
5656
"webpack": "^5.28.0"
5757
}
58-
}
58+
}

0 commit comments

Comments
 (0)