Skip to content

Commit

Permalink
lighthouse
Browse files Browse the repository at this point in the history
  • Loading branch information
RPDeshaies committed Sep 12, 2023
1 parent 4df0b24 commit edcbcec
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/components/Patreon/Patreon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export const Patreon: React.FC = () => {
<Grid item>
<Image
width={16}
height={16}
src={patreonImage.src}
alt={t("donation.patreon")}
/>
Expand Down
19 changes: 18 additions & 1 deletion lib/routes/Home/HomeRoute.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,8 @@ export const HomeRoute: React.FC<{}> = () => {
// https://icons8.com/icons/plasticine
<Image
className={props.className}
width={100}
height={100}
src="https://img.icons8.com/plasticine/100/000000/alps.png"
alt="scenes"
/>
Expand All @@ -301,6 +303,8 @@ export const HomeRoute: React.FC<{}> = () => {
// https://icons8.com/icons/plasticine
<Image
className={props.className}
width={100}
height={100}
src="https://img.icons8.com/plasticine/100/000000/wizard.png"
alt="characters"
/>
Expand All @@ -318,6 +322,8 @@ export const HomeRoute: React.FC<{}> = () => {
// https://icons8.com/icons/plasticine
<Image
className={props.className}
width={100}
height={100}
src="https://img.icons8.com/plasticine/100/000000/dice.png"
alt="dice-roller"
/>
Expand All @@ -341,6 +347,8 @@ export const HomeRoute: React.FC<{}> = () => {
// https://icons8.com/icons/plasticine
<Image
className={props.className}
width={100}
height={100}
src="https://img.icons8.com/plasticine/100/000000/cloud-backup-restore.png"
alt="data"
/>
Expand All @@ -357,6 +365,8 @@ export const HomeRoute: React.FC<{}> = () => {
// https://icons8.com/icons/plasticine
<Image
className={props.className}
width={100}
height={100}
src="https://img.icons8.com/plasticine/100/000000/crystal-ball.png"
alt="play-solo"
/>
Expand All @@ -382,6 +392,8 @@ export const HomeRoute: React.FC<{}> = () => {
<Image
className={props.className}
alt="changelog"
width={100}
height={100}
src="https://img.icons8.com/plasticine/100/000000/comments.png"
/>
),
Expand All @@ -396,6 +408,8 @@ export const HomeRoute: React.FC<{}> = () => {
<Image
className={props.className}
alt="wiki"
width={100}
height={100}
src="https://img.icons8.com/plasticine/100/000000/contract.png"
/>
),
Expand All @@ -410,6 +424,8 @@ export const HomeRoute: React.FC<{}> = () => {
<Image
className={props.className}
alt="fari-games"
width={100}
height={100}
src="https://img.icons8.com/plasticine/100/000000/bookmark--v1.png"
/>
),
Expand Down Expand Up @@ -449,7 +465,7 @@ export const HomeRoute: React.FC<{}> = () => {
</Grid>
<Grid item md={6} xs={12} container justifyContent="center" spacing={2}>
<Grid item xs={12}>
<Image src={discord.src} width={50} alt="Discord" />
<Image src={discord.src} alt="Discord" />
</Grid>
<Grid item xs={12}>
<Button
Expand Down Expand Up @@ -773,6 +789,7 @@ function HomeRouteCards(props: { cards: Array<IHomeRouteCard> }) {
<Box mb="1rem">
<FateLabel
variant="h5"
component={"p"}
align="center"
color="textPrimary"
uppercase={false}
Expand Down
1 change: 1 addition & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export", // Outputs a Single-Page Application (SPA).
images: { unoptimized: true },
};

export default nextConfig;

0 comments on commit edcbcec

Please sign in to comment.