Skip to content

Commit

Permalink
Feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rarestoma committed Oct 6, 2022
1 parent 9f055bb commit f95b454
Show file tree
Hide file tree
Showing 286 changed files with 27,844 additions and 1 deletion.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
63 changes: 63 additions & 0 deletions .github/workflows/pages.yml
@@ -0,0 +1,63 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll site to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@0a29871fe2b0200a17a4497bae54fe5df0d973aa # v1.115.3
with:
ruby-version: '3.0' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Setup Pages
id: pages
uses: actions/configure-pages@v2
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v1

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
12 changes: 12 additions & 0 deletions .gitignore
@@ -0,0 +1,12 @@
_site
.sass-cache
.jekyll-metadata
.jekyll-cache
node_modules
package-lock.json
Gemfile.lock
.idea
_jekyll_source
.DS_Store
_docs-content-for-deploy
tmp
31 changes: 31 additions & 0 deletions Gemfile
@@ -0,0 +1,31 @@
source "https://rubygems.org"

# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem 'jekyll', '~> 4.0'
gem 'jekyll-toc', '~> 0.12.2'
gem 'webrick', '~> 1.3', '>= 1.3.1'

# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
# gem "github-pages", group: :jekyll_plugins

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]

# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.0" if Gem.win_platform?

gem 'jekyll-watch'


group :jekyll_plugins do
gem 'jekyll-admin'
gem "jekyll-tabs"
end
2 changes: 1 addition & 1 deletion README.md
@@ -1 +1 @@
# elrond-elements
# Elrond Elements
135 changes: 135 additions & 0 deletions _config.yml
@@ -0,0 +1,135 @@
title: Elrond Elements
email: rares@creative-tim.com
description: >-
Start your development with a Design System for Elrond.
url: ''

sidebar_yml: "sidebar.yml"
destination: _site/
sass:
sass_dir: assets/_scss
style: compressed

collections:
docs:
output: true
sidebar_label: "Docs"
includes:
output: true
sidebar_label: "Includes"
layouts:
output: true
sidebar_label: "Layouts"

defaults:
-
scope:
path: "docs"
type: "pages"
values:
layout: "page"
title: "Title page"
description: "Description Page"
group: "components"
design: "design"
is_pro: true
toc: true
-
scope:
path: "blog"
type: "pages"
values:
layout: "blog"
title: "Title blog post"
description: "Description Blog"
toc: true



algolia_search: false

twitter_username: jekyllrb
github_username: web3-creative-tim
github_repo: elrond-elements
docs_assets:
elrond-elements:
head_title: Elrond Elements by Creative Tim

plugins:
- jekyll-toc
- jekyll-tabs
kramdown:
auto_ids: true
docs:
version: 1.0.0
exclude:
- .sass-cache/
- .jekyll-cache/
- gulpfile.js
- gemfiles/
- Gemfile
- Gemfile.lock
- package-lock.json
- package.json
- node_modules/
- vendor/bundle/
- vendor/cache/
- vendor/gems/
- vendor/ruby/
- README.md
- build.sh
- _config.yml
- commit.sh
- deploy.sh
- _includes/
- tmp
author: Creative Tim
website_url: ''
product_purchase:
product_download:
product_name: 'Elrond Elements'
blog: ''
presentation: ''
contact: ''
twitter: ''
facebook: ''
instagram: ''
github: ''
dribbble: ''
google: ''

# builder variable
product_builder:

doc_exclude_group: []
doc_exclude_files: []
doc_pro_files: []

preview_free: ''
preview_pro:

github_issues_free: ''
github_issues_pro: ''


# Meta-tags variables
meta:
twitter:
card: product
site_name: '@creativetim'
title: Elrond Elements by Creative Tim
creator: '@creativetim'

facebook:
id: 655968634437471
title: Elrond Elements by Creative Tim
type: article
url: ''
site_name: Creative Tim

description: Start your development with a Design System for Elrond.
image: https://s3.amazonaws.com/creativetim_bucket/products/450/original/opt_sd_free_thumbnail.png

# permalink: /:title/

pro_badge_color: primary
61 changes: 61 additions & 0 deletions _data/sidebar.yml
@@ -0,0 +1,61 @@
- title: Getting started
pages:
- title: Overview
folder: overview
- title: License
folder: license
- title: Quick Start
folder: quick-start
- title: Foundation
pages:
- title: Colors
folder: colors
- title: Typography
folder: typography
- title: Examples
pages:
- title: Get NFTs
folder: get-nft
- title: DAO Management
folder: dao-management
soon: true
- title: Mint NFT
folder: mint-nft
soon: true
- title: Transfer NFT
folder: transfer-nft
soon: true
- title: Swap Token
folder: swap-token
soon: true
- title: Wallet Connect
folder: wallet-connect
soon: true
- title: Components
pages:
- title: Alerts
folder: alerts
- title: Badge
folder: badge
- title: Buttons
folder: buttons
- title: Cards
folder: cards
- title: Collapse
folder: collapse
- title: Dropdowns
folder: dropdowns
- title: List Group
folder: list-group
- title: Modal
folder: modal
- title: Navs
folder: navs
- title: Navbar
folder: navbar
- title: Tables
folder: tables
- title: Plugins
pages:
- title: Charts
folder: charts
16 changes: 16 additions & 0 deletions _data/theme/theme-colors.yml
@@ -0,0 +1,16 @@
- name: dark
hex: "#1E293B"
- name: white
hex: "#FFFFFF"
- name: primary
hex: "#3066FF"
- name: secondary
hex: "#9BA5B4"
- name: info
hex: "#17A2B8"
- name: success
hex: "#12A366"
- name: danger
hex: "#DC3545"
- name: warning
hex: "#FFC107"

0 comments on commit f95b454

Please sign in to comment.