Skip to content

Commit 9f514b7

Browse files
committed
About Section Added
1 parent db305c8 commit 9f514b7

File tree

6 files changed

+36
-5
lines changed

6 files changed

+36
-5
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import Title from "./title";
2+
3+
function AboutUs(){
4+
return(
5+
<>
6+
<Title title={"About NEPTECH Tribe"} head={"About Us"} />
7+
</>
8+
)
9+
}
10+
11+
export default AboutUs;

src/Pages/Landingpage.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import Navbar from "../Components/landingpage/Navbar";
22
import Hero from "../Components/landingpage/hero";
3+
import AboutUs from "../Components/landingpage/about";
34

45
function LandingPage(){
56
return(
67
<>
78
<Navbar/>
89
<Hero/>
10+
<AboutUs/>
911
</>
1012
)
1113
}

src/Styles/App.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,20 @@
8484
text-align: center;
8585
font-size: 1rem;
8686
font-family: "Poppins", sans-serif;
87+
}
88+
89+
.Title {
90+
padding: 2rem;
91+
text-align: center;
92+
}
93+
.Title-title {
94+
font-size: 1.25rem;
95+
font-family: "Lobster Two", sans-serif;
96+
color: #000080;
97+
}
98+
.Title-head {
99+
font-size: 2.5rem;
100+
color: black;
101+
font-family: "Poppins", sans-serif;
102+
font-weight: 500;
87103
}/*# sourceMappingURL=App.css.map */

src/Styles/App.css.map

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

src/Styles/LandingPage/_Index.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@import 'Navbar';
22
@import 'Hero';
33
@import 'Button';
4-
@import 'Head'
4+
@import 'Head';
5+
@import 'Title'

src/Styles/LandingPage/_Title.scss

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Title{
2-
padding: 1rem;
1+
.Title{
2+
padding: 2rem;
33
text-align: center;
44
&-title{
55
font-size: 1.25rem;
@@ -8,7 +8,8 @@ Title{
88
}
99
&-head{
1010
font-size: 2.5rem;
11-
color: #36454f;
11+
color: black;
1212
font-family: $font;
13+
font-weight: 500;
1314
}
1415
}

0 commit comments

Comments
 (0)