ChandimaPrabath
commited on
Commit
•
25cf949
1
Parent(s):
0504ed2
site.webmanifest
Browse files
frontend/src/app/layout.js
CHANGED
@@ -14,6 +14,7 @@ export default function RootLayout({ children }) {
|
|
14 |
<html lang="en">
|
15 |
<body className={inter.className}>
|
16 |
<header>
|
|
|
17 |
<Header />
|
18 |
</header>
|
19 |
<div className="app-container">
|
|
|
14 |
<html lang="en">
|
15 |
<body className={inter.className}>
|
16 |
<header>
|
17 |
+
<link rel="manifest" href="site.webmanifest"/>
|
18 |
<Header />
|
19 |
</header>
|
20 |
<div className="app-container">
|
frontend/src/app/movies/page.js
CHANGED
@@ -9,7 +9,7 @@ import './filmsPage.css';
|
|
9 |
import { faChevronLeft, faChevronRight } from '@fortawesome/free-solid-svg-icons';
|
10 |
import Link from 'next/link';
|
11 |
|
12 |
-
const FILMS_PER_PAGE =
|
13 |
|
14 |
export default function FilmsPage() {
|
15 |
const { films, setFilms } = useFilmContext();
|
|
|
9 |
import { faChevronLeft, faChevronRight } from '@fortawesome/free-solid-svg-icons';
|
10 |
import Link from 'next/link';
|
11 |
|
12 |
+
const FILMS_PER_PAGE = 3;
|
13 |
|
14 |
export default function FilmsPage() {
|
15 |
const { films, setFilms } = useFilmContext();
|