feat: add landing page

This commit is contained in:
Maulana Sodiqin
2025-04-26 20:32:58 +07:00
parent 86290cc820
commit b389235971
23 changed files with 6756 additions and 11 deletions
+22
View File
@@ -0,0 +1,22 @@
//@ts-check
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { composePlugins, withNx } = require('@nx/next');
/**
* @type {import('@nx/next/plugins/with-nx').WithNxOptions}
**/
const nextConfig = {
nx: {
// Set this to true if you would like to to use SVGR
// See: https://github.com/gregberge/svgr
svgr: false,
},
};
const plugins = [
// Add more Next.js plugins to this list if needed.
withNx,
];
module.exports = composePlugins(...plugins)(nextConfig);