Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
joao-vasconcelos committed Jan 3, 2024
1 parent feb81c0 commit ef3fce9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function FrontendEncmItemOccupation({ currentlyWaiting, expectedW
const [waitTimeString, setWaitTimeString] = useState('');

//
// C. Render components
// B. Transform data

useEffect(() => {
// When there are customers waiting
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
'use client';

/* * */

import styles from './FrontendEncmMapPopup.module.css';
import { useTranslations } from 'next-intl';

/* * */

export default function FrontendEncmMapPopup({ encmData }) {
//

Expand All @@ -12,7 +16,7 @@ export default function FrontendEncmMapPopup({ encmData }) {
const t = useTranslations('FrontendEncmMapPopup');

//
// C. Render components
// B. Render components

return (
<div className={styles.container}>
Expand Down
4 changes: 4 additions & 0 deletions nextjs/components/FrontendFooter/FrontendFooter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
'use client';

/* * */

import styles from './FrontendFooter.module.css';
import FrontendFooterLogo from '@/components/FrontendFooterLogo/FrontendFooterLogo';
import FrontendFooterLegal from '@/components/FrontendFooterLegal/FrontendFooterLegal';
Expand Down Expand Up @@ -28,4 +30,6 @@ export default function FrontendFooter() {
<FrontendFooterLegal />
</footer>
);

//
}
6 changes: 6 additions & 0 deletions nextjs/components/FrontendFooterLegal/FrontendFooterLegal.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
'use client';

/* * */

import styles from './FrontendFooterLegal.module.css';
import Image from 'next/image';
import { useTranslations } from 'next-intl';

/* * */

export default function FrontendFooterLegal() {
//

Expand Down Expand Up @@ -37,4 +41,6 @@ export default function FrontendFooterLegal() {
</div>
</div>
);

//
}

0 comments on commit ef3fce9

Please sign in to comment.