-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
85 lines (77 loc) · 2.34 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
81
82
83
84
85
import "./App.css";
import ReactDOM from "react-dom";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import {
faChevronLeft,
faChevronRight,
} from "@fortawesome/free-solid-svg-icons";
import Header from "./Components/Header";
import About from "./Components/About";
import Services from "./Components/Services";
import Testimonial from "./Components/Testimonial";
import Footer from "./Components/Footer";
import Hero from "./Components/Hero";
import catImg from "./Assets/Images/kitty.jpeg";
import chickens from "./Assets/Images/chickens.jpeg";
import chickenButt from "./Assets/Images/chickenButt.jpeg";
import dogWithBow from "./Assets/Images/dogWithBow.jpeg";
import jackiesArkImg from "./Assets/Images/jackiesArkImg.png";
import "bootstrap/dist/css/bootstrap.min.css";
import "./Assets/Styles/Gallery.css";
function App() {
return (
<div className="App">
<Header />
<Hero />
<main className="content-container">
<section className="about-info-container-parent">
<section className="about-info-container">
<section className="info-section">
<section className="jackie-ark-detail-card">
<img src={jackiesArkImg} />
</section>
</section>
<section className="about-section">
<About />
</section>
</section>
</section>
<Services />
<section className="photo-gallery">
<h4>HAPPY CLIENTS</h4>
<ol>
<li>
<img src={catImg} />
</li>
<li>
<img src={chickens} />
</li>
<li>
<img src={dogWithBow} />
</li>
<li>
<img src={chickenButt} />
</li>
</ol>
</section>
{/* <section className="contact-info-section">
<h4>GET IN TOUCH</h4>
<div className="contact-card">
<ol>
<li>PHONE</li>
<li>EMAIL</li>
</ol>
</div>
</section>*/}
<section className="testimonials-section">
{/* <div className="slider-container"> */}
<Testimonial />
{/* ADD PAGINATION ?? */}
{/* </div> */}
</section>
</main>
<Footer />
</div>
);
}
export default App;