Skip to content

Commit e328574

Browse files
committed
BLZ
Initial release.
1 parent bc13861 commit e328574

File tree

5 files changed

+167
-19
lines changed

5 files changed

+167
-19
lines changed

README.md

+30-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
# fire-react
2+
![Repo Stars](https://img.shields.io/github/stars/blazed-space/fire-react?style=for-the-badge "Repo Stars")
3+
4+
![Repo Downloads](https://img.shields.io/github/downloads/blazed-space/fire-react/total?style=for-the-badge "Repo Downloads")
5+
26
The Fire bootstrap & framework library for ReactJS
37

8+
- [View Demo](https://fire-react.netlify.app/)
9+
- [Documentation](https://github.com/blazed-space/fire-react/wiki)
10+
411
## What's Included
512
This package uses:
613
- [ReactJS](http://reactjs.org/)
714
- [TailwindCSS](https://tailwindcss.com/)
15+
- [HTML Monolith Boilerplate](https://github.com/tyler-ruff/tyler-ruff/blob/main/Web-Gallery/HTML-Snippets/index.html)
16+
- Blazed [custom-scrollbar](https://github.com/tyler-ruff/tyler-ruff/blob/main/Web-Gallery/CSS-Snippets/custom-scrollbar.css)
17+
- [blink-stop](https://github.com/tyler-ruff/tyler-ruff/blob/main/Web-Gallery/CSS-Snippets/blink-stop.css)
18+
- Netlify.toml (for easy [Netlify](https://netlify.com/) deploy)
819
- [Instant Page](https://instant.page/)
920
- [HTML5 Shiv](https://github.com/aFarkas/html5shiv)
1021

@@ -28,16 +39,29 @@ Then, run the following command:
2839
npm start
2940
```
3041

31-
## Deployment
32-
- **Netlify**:
33-
This project includes automatic setup for Netlify deployments.
34-
- **Other**:
42+
## Deploying
43+
To deploy to [Netlify](https://netlify.com/), simply create a new site using this repository as a template.
44+
Or, you may use the following button to deploy with one click:
45+
46+
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg "Deploy to Netlify")](https://app.netlify.com/start/deploy?repository=https://github.com/blazed-space/fire-react)
47+
48+
### Without Netlify
3549
To create a production build, run the following command:
3650

3751
```sh
3852
npm run build
3953
```
4054

55+
# Credits
56+
![Last Commit](https://img.shields.io/github/last-commit/blazed-space/fire-react?style=for-the-badge "Last Commit")
57+
## Development Team
58+
* Maintained by: [The Blazed Development Group](https://www.facebook.com/groups/blzdev)
59+
* Published by: [Blazed Publishing](https://blazed.xyz/)
60+
- Lead Developer, Project Management: [Tyler Ruff](https://github.com/tyler-ruff)
61+
- UX Testing, Project Advising: Star Dom
4162
## Special Thanks
42-
- [Create React App](https://create-react-app.dev/)
43-
- [Netlify](https://netlify.com/)
63+
- [Facebook](https://facebook.com/) and [React](http://reactjs.org/)
64+
- [Netlify](https://netlify.com/)
65+
- [HTML Head](https://htmlhead.dev/)
66+
- [TailwindCSS](https://tailwindcss.com/)
67+
- [Create React App](https://create-react-app.dev/)

public/index.html

+61-11
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<link rel="dns-prefetch" href="//blazed.sirv.com/">
88
<link rel="preconnect" href="https://blazed.sirv.com/">
9+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" />
910
<link rel="stylesheet" href="%PUBLIC_URL%/css/style.css" />
1011
<!-- Favicon -->
1112
<link rel="icon" sizes="192x192" href="https://blazed.sirv.com/logo/BLZ-blue.png?w=192&h=192">
@@ -52,20 +53,69 @@
5253
</head>
5354
<body>
5455
<section class="blz-app">
55-
<header>
56-
<nav>
57-
<a href="#">Home</a>
58-
<a href="#">About</a>
59-
<a href="#">Contact</a>
60-
</nav>
61-
</header>
56+
<header class="text-gray-600 body-font">
57+
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
58+
<a class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0">
59+
<img src="https://blazed.sirv.com/logo/Beaker-Red.png?h=50&w=50" alt="Logo" />
60+
<span class="ml-3 text-xl">
61+
React Fire
62+
</span>
63+
</a>
64+
<nav class="md:ml-auto flex flex-wrap items-center text-base justify-center">
65+
<a href="#" class="mr-5 hover:text-gray-900">
66+
Home
67+
</a>
68+
<a href="#" class="mr-5 hover:text-gray-900">
69+
About
70+
</a>
71+
<a href="#" class="mr-5 hover:text-gray-900">
72+
Contact
73+
</a>
74+
</nav>
75+
<a href="https://github.com/blazed-space/fire-react/" target="_blank" class="inline-flex items-center bg-gray-100 border-0 py-1 px-3 focus:outline-none hover:bg-gray-200 rounded text-base mt-4 md:mt-0">
76+
Repo
77+
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 ml-1" viewBox="0 0 24 24">
78+
<path d="M5 12h14M12 5l7 7-7 7"></path>
79+
</svg>
80+
</a>
81+
</div>
82+
</header>
6283
<main>
6384
<div id="root"></div>
6485
</main>
65-
<footer>
66-
<div>
67-
<span>
68-
&copy;2022 Blazed Labs LLC. All Rights Reserved.
86+
<footer class="text-gray-600 body-font">
87+
<div class="container px-5 py-8 mx-auto flex items-center sm:flex-row flex-col">
88+
<a class="flex title-font font-medium items-center md:justify-start justify-center text-gray-900">
89+
<img src="https://blazed.sirv.com/logo/Beaker-Red.png?h=50&w=50" alt="Logo" />
90+
</a>
91+
<p class="text-sm text-gray-500 sm:ml-4 sm:pl-4 sm:border-l-2 sm:border-gray-200 sm:py-2 sm:mt-0 mt-4">© 2022 Blazed Labs LLC —
92+
<a href="https://github.com/blazed-space/" class="text-gray-600 ml-1" rel="noopener noreferrer" target="_blank">
93+
@blazed-space
94+
</a>
95+
</p>
96+
<span class="inline-flex sm:ml-auto sm:mt-0 mt-4 justify-center sm:justify-start">
97+
<a href="https://www.facebook.com/blazedlabs" target="social" class="text-gray-500">
98+
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
99+
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
100+
</svg>
101+
</a>
102+
<a href="https://twitter.com/BlazedLabs" target="social" class="ml-3 text-gray-500">
103+
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
104+
<path d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z"></path>
105+
</svg>
106+
</a>
107+
<a href="https://www.instagram.com/blazed_labs/" target="social" class="ml-3 text-gray-500">
108+
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
109+
<rect width="20" height="20" x="2" y="2" rx="5" ry="5"></rect>
110+
<path d="M16 11.37A4 4 0 1112.63 8 4 4 0 0116 11.37zm1.5-4.87h.01"></path>
111+
</svg>
112+
</a>
113+
<a href="https://www.linkedin.com/company/blazed-labs/" target="social" class="ml-3 text-gray-500">
114+
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="0" class="w-5 h-5" viewBox="0 0 24 24">
115+
<path stroke="none" d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z"></path>
116+
<circle cx="4" cy="4" r="2" stroke="none"></circle>
117+
</svg>
118+
</a>
69119
</span>
70120
</div>
71121
</footer>

src/App.css

+17
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,21 @@
66
::-moz-selection{
77
background: #000;
88
color: #fff;
9+
}
10+
11+
main{
12+
max-width: 980px;
13+
position: relative;
14+
margin-left:auto;
15+
margin-right:auto;
16+
padding:10px;
17+
}
18+
19+
main h1{
20+
font-size:28px;
21+
}
22+
23+
main p{
24+
margin-top:10px;
25+
margin-bottom:20px;
926
}

src/App.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ function App() {
44
return (
55
<div className="App">
66
<article>
7-
<p>
7+
<h1>
88
Welcome to React Fire!
9+
</h1>
10+
<p>
11+
Boilerplate framework for React.
912
</p>
13+
<img src="https://blazed.sirv.com/logo/Wallpaper-Beaker.png" />
1014
</article>
1115
</div>
1216
);

src/index.css

+54-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,57 @@ html, body{
1212

1313
.blz-app{
1414
max-width:100%;
15-
}
15+
}
16+
17+
/*
18+
@ blink-stop v1.0
19+
DESC: Prevent blinking cursor. Since the ::all selector is so slow,
20+
we define all HTML elements that are cross-browser supported.
21+
(c) MIT Tyler Ruff; Blazed Labs LLC
22+
*/
23+
24+
div, table, button, a, i, span, body, html,
25+
section, article, p, svg, h1, h2, h3, h4, h5, var,
26+
h6, hr, br, thead, tr, th, td, footer, main, header,
27+
aside, b, strong, blockquote, code, cite, col, colgroup,
28+
input[type=submit], input[type=radio], input[type=checkbox],
29+
input[type=color], input[type=date], input[type=file],
30+
input[type=hidden], input[type=image], input[type=reset],
31+
input[type=button], input[type=range], form, dl, dt, dd,
32+
iframe, label, legend, ul, li, img, caption, dfn, em, tfoot,
33+
fieldset, nav, ol, option, pre, select, sup, sub, tbody {
34+
caret-color: rgba(0,0,0,0);
35+
}
36+
37+
/*
38+
Define cursor blinking color for text-based input types
39+
*/
40+
input[type=text]:focus, input[type=password]:focus, input[type=email]:focus,
41+
input[type=tel]:focus, input[type=text]:focus, input[type=number]:focus,
42+
input[type=search]:focus, input[type=url]:focus, textarea:focus {
43+
caret-color: rgba(0,0,0,1);
44+
}
45+
46+
/*
47+
@ custom-scrollbar v1.0
48+
DESC: Blazed Labs Custom Scrollbar.
49+
(c) MIT Tyler Ruff; Blazed Labs LLC
50+
*/
51+
52+
body::-webkit-scrollbar{
53+
width:10px;
54+
}
55+
56+
body::-webkit-scrollbar-track{
57+
background:#727a8a;
58+
}
59+
60+
body::-webkit-scrollbar-thumb{
61+
background-color:#afb4bd;
62+
border-radius:20px;
63+
border:1px solid #5b626e;
64+
}
65+
66+
body::-webkit-scrollbar-thumb:hover{
67+
background-color:#5b626e;
68+
}

0 commit comments

Comments
 (0)