Skip to content

Commit f20452a

Browse files
committed
rectifying build errors
1 parent 8fc47ac commit f20452a

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"scripts": {
4444
"heroku-postbuild": "npm run build",
4545
"start": "serve -s build",
46-
"build": "react-scripts build",
46+
"build": "set \"CI=false\" && react-scripts build",
4747
"test": "react-scripts test",
4848
"eject": "react-scripts eject"
4949
},

src/App.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import JoinUs from './pages/JoinUs/JoinUs'
77
import {
88
Switch,
99
Route,
10-
HashRouter,
1110
BrowserRouter
1211
} from "react-router-dom";
1312
import COC from './pages/COC/COC'

src/pages/Home/Components/Partners.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ const Partners = () => {
1111
<div class="row">
1212
<div class="col-6">
1313
<h2 className="component-heading">Our Partners</h2>
14-
<img src={wwc} style={{width:"60%"}}/>
14+
<img src={wwc} alt="image" style={{width:"60%"}}/>
1515
</div>
1616
<div class="col-6">
1717
<h2 className="component-heading">Our Sponsers</h2>
18-
<img src={dgocean} style={{width:"40%"}}/>
18+
<img src={dgocean} alt="image" style={{width:"40%"}}/>
1919
</div>
2020
</div>
2121
</div>

src/pages/Home/Components/Projects.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const Projects = () => {
1313
{/* <p class="font-size-lg text-muted mb-7">Codeuino is a Non-Profit Open Source Social Networking organisation that provides various robust frameworks solutions which could span the entire world through building all kinds of social environments, discussion portals and collaboration platforms by giving prospectus to various other organisations, users and outreachers to showcase their products in a custom way. This wide social open networking framework organisation is driven by the volunteers all over the globe. This helps open source enthusiast to build up various technocratic social wide living softwares and researching FOSS projects under code survivors and challenging world. Codeuino takes into house the development of some of the coolest Open Source Projects that are made with the sole motive to benefit more and more people present all over the world.</p> */}
1414
<div class="row">
1515
<div class="col-md-6 col-12" style={{display:"flex",justifyContent:"space-around"}}>
16-
<img className="img-fluid" style={{width: "100%"}} src={donut}/>
16+
<img alt="image" className="img-fluid" style={{width: "100%"}} src={donut}/>
1717
</div>
1818
<div class="col-md-6 col-12">
1919
<h1>Donut</h1>
@@ -38,7 +38,7 @@ const Projects = () => {
3838
</div>
3939
</div>
4040
<div class="col-md-6 col-12 mt-10"style={{display:"flex",justifyContent:"space-around"}}>
41-
<img className="img-fluid" style={{width: "100%"}} src={codebadge}/>
41+
<img alt="image" className="img-fluid" style={{width: "100%"}} src={codebadge}/>
4242
</div>
4343
</div>
4444
</div>
@@ -61,7 +61,7 @@ const Projects = () => {
6161
<h1 class="mt-5">Coming Soon</h1>
6262
</div>
6363
<div class="col-md-2">
64-
<img src={card} class="h-75 position-absolute right-0 mt-6 mr-3" alt="Productivity" />
64+
<img alt="image" src={card} class="h-75 position-absolute right-0 mt-6 mr-3" alt="Productivity" />
6565
</div>
6666
</div>
6767
</div>
@@ -72,7 +72,7 @@ const Projects = () => {
7272
{/* </div> */}
7373
</div>
7474
</div>
75-
{/* <img src="https://d33wubrfki0l68.cloudfront.net/952392990c72334768fe8a1bbf2abb95f18dabfc/574b9/static/dashboard-screen-a4681e6a8cbc13190924ce784fdcc815.png" alt="DashboardScreenshot" class="img-fluid" /> */}
75+
{/* <img alt="image" src="https://d33wubrfki0l68.cloudfront.net/952392990c72334768fe8a1bbf2abb95f18dabfc/574b9/static/dashboard-screen-a4681e6a8cbc13190924ce784fdcc815.png" alt="DashboardScreenshot" class="img-fluid" /> */}
7676
</div>
7777
<section class="pt-30 mt-n15 bg-gray-200 position-relative">
7878
</section>

src/pages/JoinUs/JoinUs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ const JoinUs = () => {
1212
</div>
1313
<section class="container">
1414
<div class="row" style={{display:"flex",justifyContent:"space-evenly"}}>
15-
<a href="http://slack.codeuino.org"><img src="https://cdn0.iconfinder.com/data/icons/tuts/256/slack_alt.png"/></a>
16-
<a href="https://github.com/codeuino"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTUGABB70TILWLV3BLkJ0hLr0arXG20T7pGd6czWU7tzdkwdoRV&s"/></a>
15+
<a href="http://slack.codeuino.org"><img alt="image" src="https://cdn0.iconfinder.com/data/icons/tuts/256/slack_alt.png"/></a>
16+
<a href="https://github.com/codeuino"><img alt="image" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTUGABB70TILWLV3BLkJ0hLr0arXG20T7pGd6czWU7tzdkwdoRV&s"/></a>
1717
</div>
1818
</section>
1919
</div><br/><br/>

0 commit comments

Comments
 (0)