Skip to content

Commit

Permalink
simple edit to footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee-Wei-Jie committed Sep 7, 2024
1 parent 798ac45 commit d0dd2d4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/.h2.server.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#H2 Server Properties
#Sat Sep 07 21:50:49 SGT 2024
#Sat Sep 07 22:31:28 SGT 2024
0=JHipster H2 (Disk)|org.h2.Driver|jdbc\:h2\:file\:./target/h2db/db/scaleup|scaleup
webAllowOthers=true
webPort=8092
Expand Down
10 changes: 4 additions & 6 deletions src/main/webapp/app/shared/layout/footer/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
import './footer.scss';

import React from 'react';

import { Col, Row } from 'reactstrap';

const Footer = () => (
<div className="footer page-content">
<footer className="footer">
<Row>
<Col md="12">
<p>This is your footer</p>
<Col md="12" className="text-center">
<p>&copy; {new Date().getFullYear()} Scaleup. All rights reserved.</p>
</Col>
</Row>
</div>
</footer>
);

export default Footer;

0 comments on commit d0dd2d4

Please sign in to comment.