-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Добавил карусель + сделал верхушки для о нас и фуршет, подправил адап…
…тацию фотки для фона
- Loading branch information
1 parent
07a6c8c
commit 652d725
Showing
11 changed files
with
104 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from 'react'; | ||
import {Carousel as CarouselB} from "react-bootstrap" | ||
|
||
|
||
const Carousel = (props) => { | ||
return ( | ||
<CarouselB> | ||
{props.imgs | ||
? props.imgs.map((path,index) => | ||
<CarouselB.Item key={path+index} > | ||
<img className="img-fluid rounded" src={path}/> | ||
</CarouselB.Item>) | ||
:null} | ||
</CarouselB> | ||
); | ||
}; | ||
|
||
export default Carousel; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,35 @@ | ||
import React from 'react'; | ||
import {FaPhoneAlt,FaEnvelope} from "react-icons/fa"; | ||
|
||
const About = () => { | ||
return ( | ||
<div className="content"> | ||
<h1>It is about</h1> | ||
<div className="content pt-5"> | ||
<div className="container shadow d-grid align-content-center p-3"> | ||
<div className="row"> | ||
<div className="col-12 py-3 col-lg-6 py-lg-0 align-self-center"> | ||
<img src="./img/page/main.jpg" className="img-fluid rounded"/> | ||
</div> | ||
<div className="col-12 py-3 col-lg-6 py-lg-0"> | ||
<h1>КОНТАКТЫ</h1> | ||
<div className="container py-3 py-lg-0"> | ||
<div className="mx-1 row"> | ||
<h3>Телефон:</h3> | ||
<a className="mx-auto mx-lg-1 text-decoration-none text-black" href="tel:+7-953-349-61-09"><FaPhoneAlt/>+7 (953) 349-61-09</a> | ||
</div> | ||
<div className="mx-1 row"> | ||
<h3>E-mail:</h3> | ||
<a className="mx-auto mx-lg-1 text-decoration-none text-black" href="mailto:[email protected]"><FaEnvelope/> [email protected]</a> | ||
</div> | ||
<div className="mx-1 row"> | ||
<h3>Адрес:</h3> | ||
<a className="mx-auto mx-lg-1 text-decoration-none text-black" href="mailto:[email protected]"> | ||
ИП Горячев Сергей Сергеевич Санкт-Петербург | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters