forked from codeaashu/DevDisplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
80 lines (69 loc) · 3.41 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import React from 'react';
import { BrowserRouter, Route, Routes } from 'react-router-dom';
import { Helmet } from 'react-helmet';
import Homepage from './Homepage';
import Home from './Page/Home.jsx';
import Opportunities from './Page/Opportunities.jsx';
import IdeaSubmission from './Page/IdeaSubmission.jsx';
import PortfolioIdeas from './Page/PortfolioIdeas.jsx';
import PortfolioBuilder from './Page/PortfolioBuilder.jsx';
import ProjectShowcase from './Page/ProjectShowcase.jsx';
import ResumeBuilder from './Page/ResumeBuilder.jsx';
import Resources from './Page/Resources.jsx';
import Discussions from './Page/Discussions.jsx';
function App() {
return (
<BrowserRouter>
<Helmet>
<title>DevDisplay - Global Tech Hub</title>
<meta
name="description"
content="DevDisplay brings together all your tech needs in one place. Showcase your skills, connect globally, collaborate, build and promote."
/>
<meta
name="keywords"
content="DevDisplay, open source, community, tech skills, collaboration, tech platform, developers, devdisplay, devdisplay org, developers, opensource, developer community, tech community, Dev Display, dev display"
/>
<meta charSet="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:title" content="DevDisplay - Global Tech Hub" />
<meta
property="og:description"
content="Join DevDisplay to Showcase your skills, connect globally, collaborate, build and promote."
/>
<meta property="og:image" content="https://www.devdisplay.org/og-image.jpg" />
<meta property="og:url" content="https://www.devdisplay.org" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="DevDisplay" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="DevDisplay - Global Tech Hub" />
<meta
name="twitter:description"
content="Showcase your skills, connect globally, collaborate, build and promote."
/>
<meta name="twitter:image" content="https://www.devdisplay.org/twitter-image.jpg" />
<meta name="twitter:site" content="@devdisplay_" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://www.devdisplay.org" />
<link rel="icon" href="/DevDisplay ICON.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/DevDisplay ICON.png" />
<meta name="theme-color" content="#317EFB" />
<meta name="author" content="Ashutosh Singh" />
<meta property="og:locale" content="en_US" />
</Helmet>
<Routes>
<Route index element={<Homepage />} />
<Route path="/Home" element={<Home />} />
<Route path="/Opportunities" element={<Opportunities />} />
<Route path="/IdeaSubmission" element={<IdeaSubmission />} />
<Route path="/PortfolioIdeas" element={<PortfolioIdeas />} />
<Route path="/PortfolioBuilder" element={<PortfolioBuilder />} />
<Route path="/ProjectShowcase" element={<ProjectShowcase />} />
<Route path="/ResumeBuilder" element={<ResumeBuilder />} />
<Route path="/Resources" element={<Resources />} />
<Route path="/Discussions" element={<Discussions />} />
</Routes>
</BrowserRouter>
);
}
export default App;