Compare commits
No commits in common. "568f1efa2feaf139fd306f213ec59635a31677aa" and "4496406eacc2479a68bfc9be73e4bb90884d8ba2" have entirely different histories.
568f1efa2f
...
4496406eac
Binary file not shown.
|
Before Width: | Height: | Size: 4.1 MiB |
@ -1,12 +1,12 @@
|
|||||||
import "@fontsource/open-sans";
|
import "@fontsource/open-sans";
|
||||||
import './App.scss';
|
import './App.scss';
|
||||||
import Portfolio from "./sections/Portfolio";
|
import Portfolio from "./sections/Portfolio";
|
||||||
import PhotoHeader from "./sections/headers/PhotoHeader";
|
import Header from "./sections/Header";
|
||||||
|
|
||||||
const App = () => {
|
const App = () => {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<PhotoHeader />
|
<Header />
|
||||||
<Portfolio />
|
<Portfolio />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import SiteLogo from "../../elements/SiteLogo";
|
import SiteLogo from "../elements/SiteLogo";
|
||||||
import './Header.scss';
|
import './Header.scss';
|
||||||
|
|
||||||
const Header = () => {
|
const Header = () => {
|
||||||
@ -29,16 +29,6 @@ const images = [{
|
|||||||
id: 5,
|
id: 5,
|
||||||
imagePath: 'images/5.jpg',
|
imagePath: 'images/5.jpg',
|
||||||
thumbPath: 'images/5.jpg'
|
thumbPath: 'images/5.jpg'
|
||||||
},
|
|
||||||
// {
|
|
||||||
// id: 6,
|
|
||||||
// imagePath: 'images/6.jpg',
|
|
||||||
// thumbPath: 'images/6.jpg'
|
|
||||||
// },
|
|
||||||
{
|
|
||||||
id: 7,
|
|
||||||
imagePath: 'images/7.jpg',
|
|
||||||
thumbPath: 'images/7.jpg'
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@ -1,12 +0,0 @@
|
|||||||
import Header from "./Header";
|
|
||||||
import './PhotoHeader.scss';
|
|
||||||
|
|
||||||
const PhotoHeader = () => {
|
|
||||||
return(
|
|
||||||
<div className='photo-header-container'>
|
|
||||||
<Header />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default PhotoHeader;
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
.photo-header-container {
|
|
||||||
background-image: url('../../../public/images/7.jpg');
|
|
||||||
background-position: center center;
|
|
||||||
background-size: cover;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
Loading…
x
Reference in New Issue
Block a user