mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-12 01:52:49 +00:00
added client things - finished home page
This commit is contained in:
8
client/app/components/footer/footer.scss
Normal file
8
client/app/components/footer/footer.scss
Normal file
@@ -0,0 +1,8 @@
|
||||
.bottom-bg {
|
||||
background-image: url('../../assets/bottom-bg.gif');
|
||||
background-repeat: repeat-x;
|
||||
height: 46px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
24
client/app/components/footer/footer.tsx
Normal file
24
client/app/components/footer/footer.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import React from 'react';
|
||||
|
||||
import bottom_blizzlogo from '../../assets/bottom-blizzlogo.gif';
|
||||
|
||||
import './footer.scss';
|
||||
|
||||
interface Props {}
|
||||
|
||||
interface State {}
|
||||
|
||||
export class Footer extends React.Component<Props, State> {
|
||||
constructor(props: Props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div className="bottom-bg">
|
||||
<img src={bottom_blizzlogo}/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user