-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Just add some stubs for the other pack pages
- Loading branch information
Showing
4 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import Head from 'next/head'; | ||
import { DefaultTopBar } from '../../components/TopBar.js'; | ||
import { withTranslation } from '../../lib/translation.js'; | ||
|
||
export const getServerSideProps = withTranslation(() => { | ||
return Promise.resolve({ props: {} }); | ||
}); | ||
|
||
export default function Page() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>{`Pack | Crosshare Crossword Constructor and Puzzles`}</title> | ||
</Head> | ||
<DefaultTopBar /> | ||
<div className="margin1em"> | ||
<h2>Coming soon...</h2> | ||
</div> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import Head from 'next/head'; | ||
import { DefaultTopBar } from '../../../components/TopBar.js'; | ||
import { withTranslation } from '../../../lib/translation.js'; | ||
|
||
export const getServerSideProps = withTranslation(() => { | ||
return Promise.resolve({ props: {} }); | ||
}); | ||
|
||
export default function Page() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>{`Edit Pack | Crosshare Crossword Constructor and Puzzles`}</title> | ||
</Head> | ||
<DefaultTopBar /> | ||
<div className="margin1em"> | ||
<h2>Coming soon...</h2> | ||
</div> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import Head from 'next/head'; | ||
import { DefaultTopBar } from '../../../components/TopBar.js'; | ||
import { withTranslation } from '../../../lib/translation.js'; | ||
|
||
export const getServerSideProps = withTranslation(() => { | ||
return Promise.resolve({ props: {} }); | ||
}); | ||
|
||
export default function Page() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>{`Manage Pack Access | Crosshare Crossword Constructor and Puzzles`}</title> | ||
</Head> | ||
<DefaultTopBar /> | ||
<div className="margin1em"> | ||
<h2>Coming soon...</h2> | ||
</div> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import Head from 'next/head'; | ||
import { DefaultTopBar } from '../../components/TopBar.js'; | ||
import { withStaticTranslation } from '../../lib/translation.js'; | ||
|
||
export const getStaticProps = withStaticTranslation(() => { | ||
return { props: {} }; | ||
}); | ||
|
||
export default function Page() { | ||
return ( | ||
<> | ||
<Head> | ||
<title>{`Packs | Crosshare Crossword Constructor and Puzzles`}</title> | ||
</Head> | ||
<DefaultTopBar /> | ||
<div className="margin1em"> | ||
<h2>Coming soon...</h2> | ||
</div> | ||
</> | ||
); | ||
} |