Skip to content

Commit e3bfe6d

Browse files
added tailwind.css
1 parent ff8d27f commit e3bfe6d

35 files changed

+176165
-901
lines changed

.eslintcache

+1-1
Large diffs are not rendered by default.

package-lock.json

+2,394-24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+11-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"@testing-library/react": "^11.2.3",
88
"@testing-library/user-event": "^12.6.2",
99
"bootstrap": "^4.6.0",
10+
"postcss": "^8.2.4",
1011
"react": "^17.0.1",
1112
"react-dom": "^17.0.1",
1213
"react-router-dom": "^5.2.0",
@@ -17,10 +18,12 @@
1718
"web-vitals": "^0.2.4"
1819
},
1920
"scripts": {
20-
"start": "react-scripts start",
21-
"build": "react-scripts build",
21+
"start": "npm run watch:css && react-scripts start",
22+
"build": "npm run build:css && react-scripts build",
2223
"test": "react-scripts test",
23-
"eject": "react-scripts eject"
24+
"eject": "react-scripts eject",
25+
"build:css": "postcss src/assets/tailwind.css -o src/assets/main.css",
26+
"watch:css": "postcss src/assets/tailwind.css -o src/assets/main.css"
2427
},
2528
"eslintConfig": {
2629
"extends": [
@@ -39,5 +42,10 @@
3942
"last 1 firefox version",
4043
"last 1 safari version"
4144
]
45+
},
46+
"devDependencies": {
47+
"autoprefixer": "^9.8.6",
48+
"postcss-cli": "^8.3.1",
49+
"tailwindcss": "^2.0.2"
4250
}
4351
}

postcss.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
const tailwindcss = require("tailwindcss");
2+
module.exports = {
3+
plugins: [tailwindcss("./tailwind.js"), require("autoprefixer")],
4+
};

src/App.js

+7-6
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ import { Switch, Route, BrowserRouter as Router } from "react-router-dom";
22

33
import Home from "./components/Home";
44
import AboutUs from "./components/Aboutus";
5-
import Contactus from "./components/Contactus";
6-
import CurrentEvent from "./components/CurrentEvent";
5+
// import Contactus from "./components/Contactus";
6+
77
import Events from "./components/Events";
88
import Footer from "./components/Footer";
9-
9+
import Volunteer from "./components/Volunteer";
1010
import Team from "./components/Team";
1111
import Testimonials from "./components/Testimonials";
1212
import Sponsors from "./components/Sponsors";
1313

1414
import NavbarNew from "./components/NavbarNew";
1515

16-
import Main from './pages/Main';
16+
import Main from "./pages/Main";
1717
function App() {
1818
return (
1919
<div className="App">
@@ -22,12 +22,13 @@ function App() {
2222
<Switch>
2323
<Route exact path="/" component={Main} />
2424
<Route path="/about" component={AboutUs} />
25-
<Route path="/current" component={CurrentEvent} />
26-
<Route path="/contactus" component={Contactus} />
25+
26+
{/* <Route path="/contactus" component={Contactus} /> */}
2727
<Route path="/events" component={Events} />
2828
<Route path="/testimonials" component={Testimonials} />
2929
<Route path="/footer" component={Footer} />
3030
<Route path="/team" component={Team} />
31+
<Route path="/volunteer" component={Volunteer} />
3132
</Switch>
3233
<Footer />
3334
</Router>

0 commit comments

Comments
 (0)