-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.jsx
53 lines (46 loc) · 1.34 KB
/
App.jsx
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
/**
* Application component
*
* To contain application wide settings, routes, state, etc.
*/
import React from "react";
import About from "./Components/About";
import Footer from "./Components/Footer";
import Header from "./Components/Header";
import Home from "./Components/Home";
import Portfolio from "./Components/Portfolio";
import "./styles.css";
/**
* This object represents your information. The project is set so that you
* only need to update these here, and values are passed a properties to the
* components that need that information.
*
* Update the values below with your information.
*
* If you don't have one of the social sites listed, leave it as an empty string.
*/
const siteProps = {
name: "Shahzal Rehman",
title: "Web Designer & Content Creator",
email: "[email protected]",
gitHub: "Shahzal-Rehman",
instagram: "mlsapro.global.officials/",
linkedIn: "shahzal-rehman-global",
medium: "",
twitter: "ShahzalRehman",
youTube: "@Shahzal.Rehman16",
};
const primaryColor = "#4E567E";
const secondaryColor = "#D2F1E4";
const App = () => {
return (
<div id="main">
<Header />
<Home name={siteProps.name} title={siteProps.title} />
<About />
<Portfolio />
<Footer {...siteProps} primaryColor={primaryColor} secondaryColor={secondaryColor} />
</div>
);
};
export default App;