added agents page
This commit is contained in:
parent
f01d5a0067
commit
03d50ad355
6 changed files with 55 additions and 14 deletions
|
@ -1,11 +1,13 @@
|
|||
import { Component } from "react";
|
||||
import Homepage from './homePage/Homepage'
|
||||
/* import Homepage from './homePage/Homepage' */
|
||||
import AgentPage from './agent-page/AgentPage'
|
||||
|
||||
class App extends Component {
|
||||
render() {
|
||||
return (
|
||||
<div className="App">
|
||||
<Homepage/>
|
||||
{/* <Homepage/> */}
|
||||
<AgentPage/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
.agentPage {
|
||||
background-image: url('../images/Agent1.jpg');
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-attachment: scroll;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 992px) {
|
||||
.miniHero {
|
||||
background-position-y: -150px;
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
import React, { Component } from "react";
|
||||
|
||||
class AgentPage extends Component {
|
||||
render() {
|
||||
return <div>AgentPage</div>;
|
||||
}
|
||||
}
|
||||
|
||||
export default AgentPage;
|
|
@ -1,4 +1,4 @@
|
|||
import { Component } from "react";
|
||||
/* import { Component } from "react";
|
||||
import './Homepage.css';
|
||||
import house1 from '../images/house1.jpg';
|
||||
import house2 from '../images/house2.jpg';
|
||||
|
@ -105,3 +105,4 @@ class Homepage extends Component {
|
|||
}
|
||||
|
||||
export default Homepage;
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue