Skip to content

Commit

Permalink
refactor: update assets
Browse files Browse the repository at this point in the history
close 189
  • Loading branch information
Ramaaldakkak committed Aug 31, 2022
1 parent d7f48f2 commit 9963c5d
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 10 deletions.
Binary file modified public/favicon.ico
Binary file not shown.
Binary file added public/faviconreact.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Learn how to configure a non-root public URL by running `npm run build`.
-->

<title>React App</title>
<title>Reach</title>
<!-- tailwindcss -->
<link href="/dist/output.css" rel="stylesheet">
<title>Teach Kids</title>
Expand Down
Binary file modified src/assets/AboutUs-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/herosction.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/ourValues.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/studying.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/components/AboutUs/AboutUs.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Slider from "react-slick";
import "./AboutUs.css";
import aboutUsOne from "src/assets/AboutUs-1.jpg";
import aboutUsTwo from "src/assets/AboutUs-2.jpg";
import aboutUsTwo from "src/assets/studying.jpg";
import aboutUsThree from "src/assets/AboutUs-3.jpg";
import SliderArrow from "./SliderArrow/SliderArrow";
import { useTranslation } from "react-i18next";
Expand All @@ -26,7 +26,7 @@ function AboutUs() {
const ImgMap = {
aboutUsOne: aboutUsOne,
aboutUsTwo: aboutUsTwo,
aboutUsThree: aboutUsTwo,
aboutUsThree: aboutUsThree,
};
let reverse = "flex-row";
let reverse1 = "lg:text-left";
Expand Down Expand Up @@ -71,11 +71,11 @@ function AboutUs() {
{/* Text Wrapper */}
<div className=' mt-8 md:break-normal lg:w-3/4 '>
<h1
className={`pb-4 ${reverse1} px-4 font-SourceSansPro text-xl font-bold tracking-wider text-white md:text-4xl`}
className={`pb-4 ${reverse1} px-4 font-quicksand text-xl font-bold tracking-wider text-white md:text-4xl`}
>
{item.title}
</h1>
<p className='px-4 pb-12 font-SourceSansPro text-lg text-white md:text-xl'>
<p className='px-4 pb-12 font-SourceSansPro font-medium text-lg text-white md:text-xl'>
{item.description}
</p>
</div>
Expand Down
5 changes: 3 additions & 2 deletions src/components/HeroSection/HeroSection.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from "react";
import "../../App.css";
import logo from "../../assets/landing_page 1.png";
//import logo from "../../assets/landing_page 1.png";
import logo from "../../assets/herosction.png"
import { Link } from "react-router-dom";
import { useTranslation } from "react-i18next";
import "./style.css";
Expand All @@ -17,7 +18,7 @@ function HeroSection() {
<h1 className=' mb-6 text-center font-quicksand text-8xl font-semibold text-blue-dark md:text-start'>
{t("home.hero.title")}
</h1>
<h1 className='my-12 mb-4 text-center font-SourceSansPro text-2xl font-bold leading-5 tracking-wider text-blue-dark md:text-start md:text-4xl'>
<h1 className='my-12 mb-4 text-center font-quicksand text-2xl font-bold leading-5 tracking-wider text-blue-dark md:text-start md:text-4xl'>
{t("home.hero.description")}
</h1>

Expand Down
6 changes: 3 additions & 3 deletions src/components/OurValues/OurValues.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Slider from "react-slick";
import "./Values.css";
import volunteerPic from "src/assets/volunteer.jpg";
import teachPic from "src/assets/Teach.jpg";
import teachPic from "src/assets/ourValues.jpg";
import trustPic from "src/assets/Trust.jpg";
import SliderArrow from "./SliderArrow/SliderArrow";

Expand All @@ -25,8 +25,8 @@ function OurValues() {
const [t] = useTranslation();
const ImgMap = {
volunteerPic: volunteerPic,
teachPic: teachPic,
trustPic: trustPic,
teachPic: teachPic,
};
let reverse = "flex-row";
let reverse1 = "lg:text-left";
Expand Down Expand Up @@ -69,7 +69,7 @@ function OurValues() {
>
{item.title}
</h1>
<p className='pb-12 font-SourceSansPro text-lg text-blue-dark md:text-xl'>
<p className='pb-12 font-SourceSansPro font-bold text-lg text-blue-dark md:text-xl'>
{item.description}
</p>
</div>
Expand Down

0 comments on commit 9963c5d

Please sign in to comment.