File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import About from './About';
1010import Officers from './Officers' ;
1111import Calendar from './Calendar' ;
1212import Newsletter from './Newsletter' ;
13+ import Resources from './Resources' ;
1314
1415function App ( ) {
1516 return (
@@ -25,6 +26,7 @@ function App() {
2526 < Link to = '/about' > About Us</ Link > |
2627 < Link to = '/calendar' > Calendar</ Link > |
2728 < Link to = '/officers' > Officers</ Link > |
29+ < Link to = '/resources' > Resources</ Link > |
2830 < Link to = '/newsletter' > Newsletter</ Link >
2931 </ nav >
3032 </ div >
@@ -38,6 +40,7 @@ function App() {
3840 < Route path = '/about' element = { < About /> } />
3941 < Route path = '/calendar' element = { < Calendar /> } />
4042 < Route path = '/officers' element = { < Officers /> } />
43+ < Route path = '/resources' element = { < Resources /> } />
4144 < Route path = '/newsletter' element = { < Newsletter /> } />
4245 </ Routes >
4346
Original file line number Diff line number Diff line change 1+ .resources-container {
2+ display : flex;
3+ flex-direction : column;
4+ align-items : center;
5+ padding : 20px ;
6+ background-color : # f9f9f9 ;
7+ }
8+
9+ .header-section {
10+ font-size : 2em ;
11+ margin-bottom : 20px ;
12+ color : # 333 ;
13+ }
14+
15+ .coming-soon {
16+ font-size : 1.5em ;
17+ color : # 666 ;
18+ margin-top : 50px ;
19+ }
20+
21+ .add-resource {
22+ display : flex;
23+ flex-direction : column;
24+ align-items : center;
25+ margin-bottom : 20px ;
26+ }
27+
28+ .add-resource input {
29+ padding : 10px ;
30+ margin-bottom : 10px ;
31+ border : 1px solid # ccc ;
32+ border-radius : 5px ;
33+ width : 300px ;
34+ }
35+
36+ .add-resource-button {
37+ padding : 10px 20px ;
38+ background-color : # 007bff ;
39+ color : white;
40+ border : none;
41+ border-radius : 5px ;
42+ cursor : pointer;
43+ }
44+
45+ .add-resource-button : hover {
46+ background-color : # 0056b3 ;
47+ }
48+
49+ .resource-list {
50+ width : 100% ;
51+ max-width : 600px ;
52+ }
53+
54+ .resource-list ul {
55+ list-style-type : none;
56+ padding : 0 ;
57+ }
58+
59+ .resource-list li {
60+ background-color : white;
61+ padding : 10px ;
62+ margin-bottom : 10px ;
63+ border : 1px solid # ccc ;
64+ border-radius : 5px ;
65+ }
166
67+
Original file line number Diff line number Diff line change 1+ import React from 'react' ;
2+ import './Resources.css' ;
13
4+ function Resources ( ) {
5+ return (
6+ < main className = 'resources-container' >
7+ < h1 className = 'header-section' > Resources</ h1 >
8+ < p className = 'coming-soon' > Coming Soon</ p >
9+ </ main >
10+ ) ;
11+ }
12+
13+ export default Resources ;
You can’t perform that action at this time.
0 commit comments