
-
-
- - Copy/paste the text from the SimulationCraft addon. {} - - How to install and use the SimC addon - - -
- Select pieces of gear and Sim-Free will sim them -
diff --git a/frontend/next.config.mjs b/frontend/next.config.mjs index 4350313..5ebb000 100644 --- a/frontend/next.config.mjs +++ b/frontend/next.config.mjs @@ -1,6 +1,9 @@ /** @type {import('next').NextConfig} */ const nextConfig = { output: "export", + images: { + unoptimized: true, + }, }; export default nextConfig; diff --git a/frontend/src/app/page.module.css b/frontend/src/app/page.module.css index c649bba..8ea5b78 100644 --- a/frontend/src/app/page.module.css +++ b/frontend/src/app/page.module.css @@ -32,7 +32,9 @@ flex-direction: column; gap: 32px; grid-row-start: 2; - min-width: 1280px; + width: 100%; + min-width: 1080px; + max-width: 1300px; } .main ol { @@ -57,6 +59,10 @@ font-weight: 600; } +.main .intro { + margin: auto; +} + .ctas { display: flex; gap: 16px; diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx index 84c9da8..3f67b1b 100644 --- a/frontend/src/app/page.tsx +++ b/frontend/src/app/page.tsx @@ -1,80 +1,12 @@ -import Image from "next/image"; import styles from "./page.module.css"; -import { SimCurrentGear } from "./ui/forms/simCurrentGear"; +import { Intro } from "./ui/intro"; +import { Footer } from "./ui/footer"; export default function Home() { return (