Skip to content

Commit d91baf2

Browse files
committed
New Branch Added to make the code
1 parent eabfd79 commit d91baf2

File tree

9 files changed

+35
-163
lines changed

9 files changed

+35
-163
lines changed

src/Pages/Aboutpage.jsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
function AboutPage(){
2+
return(
3+
<>
4+
</>
5+
)
6+
}
7+
8+
export default AboutPage;

src/Pages/Landingpage.jsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
function LandingPage(){
2+
return(
3+
<>
4+
</>
5+
)
6+
}
7+
8+
export default LandingPage;

src/Pages/contactpage.jsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
function Contactpage(){
2+
return(
3+
<>
4+
</>
5+
)
6+
}
7+
8+
export default Contactpage;

src/Pages/eventpage.jsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
function EventPage(){
2+
return(
3+
<>
4+
</>
5+
)
6+
}
7+
8+
export default EventPage;

src/Styles/App.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Styles/App.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Styles/App.scss

Whitespace-only changes.

src/index.css

Lines changed: 0 additions & 162 deletions
This file was deleted.

src/main.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { StrictMode } from 'react'
22
import { createRoot } from 'react-dom/client'
33
import App from './App.jsx'
4-
import './index.css'
4+
import './Styles/App.css';
55

66
createRoot(document.getElementById('root')).render(
77
<StrictMode>

0 commit comments

Comments
 (0)