Make marketing page static

This commit is contained in:
KMKoushik
2024-06-24 08:47:14 +10:00
parent f77a8829be
commit 99e2665a98
3 changed files with 6 additions and 49 deletions

View File

@@ -1,4 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
output: "export",
};
export default nextConfig;

View File

@@ -53,14 +53,14 @@ export function HeroImage() {
viewport={{ once: true }}
className="p-3 bg-neutral-900 mt-24 rounded-xl mx-2"
>
<Image
{/* eslint-disable-next-line @next/next/no-img-element */}
<img
src="/app.webp"
alt="App"
width={1200}
height={800}
className="rounded-lg relative border"
priority
></Image>
/>
</motion.div>
);
}