Discussion on Oiron - React Vue HTML Landing Page Collection

Discussion on Oiron - React Vue HTML Landing Page Collection

Cart 221 sales
Well Documented

ilhammeidi supports this item

Supported

This author's response time can be up to 1 business day.

35 comments found.

Hello, are Luxiren components compatible with Orion?

Hi,

Yes, because the Oiron react version made from luxiren.

Hi, it nice langing page . Do you have NextJS version of : Oiron – React Vue HTML Landing Page Collection ?

Hi Muhamedauda,

Thanks for the appreciation.

This template already has next.js version. This template including react with next.js, vue with nuxt, and html

Regards.

Hi Support,

May i know what software or online tools you use to generate all the favicons?

Thanks

Hi,

Here are the favicon generator I use https://realfavicongenerator.net/ and https://www.favicon-generator.org/

Regards.

thanks

Youre welcome :)

Just downloaded and using SaaS template. I ran npm install then npm run build then when I run npm run export I get an error:

info – Loaded env from C:\Users\dev\documents\test\.env warn – Invalid next.config.js options detected: warn – The value at .i18n has an unexpected property, fallbackLng, which is not in the list of allowed properties (defaultLocale, domains, localeDetection, locales). warn – See more info here: https://nextjs.org/docs/messages/invalid-next-config warn – “next export” is deprecated in favor of “output: export” in next.config.js https://nextjs.org/docs/advanced-features/static-html-export info – using build directory: C:\Users\dev\documents\test\.next error – Could not find a production build in the ‘C:\Users\dev\documents\test\.next’ directory. Try building your app with ‘next build’ before starting the static export. https://nextjs.org/docs/messages/next-export-no-build-id

Hi,

Maybe you use react/simple-routing, it not support for ststic export. For static export please use the source inside folder react/default

Regards.

Hello, I want to buy your template. But first I want to know. Your project is fully react base or next js base? I want only react js base project.

Hi, this template base on next.js

i have just bought the templates but i don’t see the menu appears like on the live demo (for selecting color and layout), is that integrated to the templates ?

Hi,

Thanks for purchasing.

The demo uses react.js version. For the color and layout menu is in support-files/demo/ And for the react component itself is in support-files/demo/[demo1,2,3]/components/wrapper/ThemePalette.js

Regards.

thanks

Hello, I hosted the site on cloudflare and when browsing the page gives me the error of “The page is not being redirected correctly / too many redirects”. And, hosting the site on digitalocean returns only “404 The requested page was not found”

Could you please help me?

At Digitalocena I’m using the Apps platform.

And I’ve been following this tutorial but was unsuccessful. I deployed other apps on both platforms and did not have this problem, which led me to think that it was some configuration of the template.

I will try to use the simple-routing version

Hi,

I think for Digital Ocean Apps you should use the default version. Please run npm run build then npm run export in your local computer. That will generate out/ folder, then push the out/ folder to the repo (sometime it ignored by .gitignore, so please adjust it)

In DigitalOcean App, create Apps. Choose your repo and choose the Source Directory with ”/out”. Then just continue the step until finish

If you’re using Cloudflare you can direct upload the generated files with CloudFlare Pages. There’s in Dashboard Menu “Workers & Pages” > Overview > Create Application > Pages > Upload or Connect to Repo. Here’s the details https://developers.cloudflare.com/pages/

I created this with CloudFlare Page https://oiron-crypto.pages.dev/en/

Regards.

Hello, Good day, I bought a theme from you a few months back. The majority of the packages are now deprecated and cannot be upgraded to the next 13 and mui 5.

Could you please provide me the updated theme? Actually, I’m not sure what your policy is. If you can, please let me know. I’ll send a message from the email account I purchased.

Hi,

You the Oiron latest version already implement next v13 and MUI v5, you can download from your Themeforest Dashboard.

Regards.

Thank you so much. I found it.

Hello, I’m currently working on the next.js app of the agency package. I need to show the coming soon page until the edit is complete. How can I make a flag that will redirect any path in the URL automatically to the coming soon page? Thanks.

Hi, Thanks for purchasing.

In _app.js, import the necessary dependencies:

import React from 'react';
import { useRouter } from 'next/router';
import ComingSoonPage from './coming-soon';

Inside the _app component, create a state variable to track whether the website is complete or not. For this example, let’s assume you have a boolean flag named isWebsiteComplete.


const MyApp = ({ Component, pageProps }) => {
  const router = useRouter();
  const isWebsiteComplete = false; // Replace this with your flag

  // Check if the website is complete, and redirect to the coming soon page if it's not
  if (!isWebsiteComplete && router.asPath !== '/coming-soon') {
    router.replace('/coming-soon');
    return <ComingSoonPage />;
  }

  // Render the component as usual if the website is complete or already on the coming soon page
  return <Component {...pageProps} />;
};

export default MyApp;

Hope this can help.

Regards.

Thanks for the reply. I tried that, however there is already a router comes from the props:

const { Component, pageProps, router } = props; // eslint-disable-line

so I cannot define a new router. If I remove that one, then the original <Component /> will not get the key={router.route} from the props.

If I use the router from the props only, without defining a new useRouter(), then I get: Uncaught Error: No router instance found. you should only use “next/router” inside the client side of your app.

Any idea how to fix it? Thanks.

Hi,

Please try to change the variable name for useRouter like const routerRedirect = useRouter(); then rename the rest of that variable usage.

I am customizing the Saas package of the theme. Specifically, on Home/Integration/Integration.js file: I include a subtitle in the integration1 array of an item that is quite long (3 lines). The text is shown but it skews the actual icon and the dot * of the item is also moved to the side (not on the vertical line any longer). Can you please assist how to fix?

Hi checklist,

Thanks for purchasing.

In components/Home/Integration/integration-style.js in text: {} please add
text: {
  flex: 1,
}

and for the dot

leftSide: {
  '& $text': {
      '&:after': {
           top: calc(50% - 12px);
      }
   }
}

rightSide: {
  '& $text': {
      '&:after': {
           top: calc(50% - 12px);
      }
   }
}

I will make a patch for this issue in next update.

Regards.

Did the trick! Thanks!

Youre welcome :)

Hi,

I am thinking to buy the template which is quite nice but was horrified to see the PageSpeed results I get when running it (https://pagespeed.web.dev). This is a critical factor for SEO.

Can you please see what the issue is?

Hi,

Thanks for visiting my portfolio. As long as it can be reached by internet 4g or 5g it should be okay. Because hard to me to create a web with many visual effect and high perfomance.

Hi,

First of all, thank you for your amazing work !

I have been searching but I don’t understand something in your next.config file;

You replace the original webpack config from NextJs to push the ESLint plugin into the loaders.

You have two lines here i don’t get it. the cssModules set to true but the value is never used. And the property node from webpack set to empty object.

Thanks in advance for you reply.

Cheers.

Hi clementhommez ,

Thanks for purchasing and the appreciation.

Those both options are from previous next.js version, because it was uses express before. You can safely remove them.

I will clean up this on next update.

Regards.

Hi ,I am facing some issues while using third party library and unable to run in react js environment can you help us .

how to run this project into react js

please help me

Hi, please check in the documentation/react. Here is the online version https://ilhammeidi.github.io/oiron-docs/#install

link http://via.placeholder.com/ in source nốt found

HI mrthiitvn,

Thanks for purchasing.

You can change with https, https://via.placeholder.com

I will fix this issue in next update on the next week.

Regads.

how to run code in react js code

Hi gravitonweb,

Thanks for purchasing.

For installation and running react.js you can check in documentation folder. And here’s the online version https://ilhammeidi.github.io/oiron-docs/#install

Regads.

I get this error when I run “npm run dev”

> fintech-theme@1.2.0 dev > cross-env NODE_OPTIONS=—openssl-legacy-provider next dev -p 3005

node:internal/child_process:413 throw errnoException(err, ‘spawn’); ^

Error: spawn UNKNOWN at ChildProcess.spawn (node:internal/child_process:413:11) at Object.spawn (node:child_process:713:9) at spawn (C:\projects-2023\pennyreap\node_modules\cross-spawn\index.js:12:24) at crossEnv (C:\projects-2023\pennyreap\node_modules\cross-env\src\index.js:13:18) at Object.<anonymous> (C:\projects-2023\pennyreap\node_modules\cross-env\src\bin\cross-env.js:5:1) at Module._compile (node:internal/modules/cjs/loader:1126:14) at Object.Module._extensions..js (node:internal/modules/cjs/loader:1180:10) at Module.load (node:internal/modules/cjs/loader:1004:32) at Function.Module._load (node:internal/modules/cjs/loader:839:12) at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12) { errno: -4094, code: ‘UNKNOWN’, syscall: ‘spawn’ }

However I want to let you know that after uninstalling the antivirus in my PC it worked. Thanks for the support

Never mind I have found the configuration for the theme colour, thanks

Ok youre welcome

Hello,

I’m trying to make a form with a SELECT field, but seems like there is no way to achieve that using this template.

Have you an updated CSS file which includes a SELECT style like the one for input-field ???

My order number is: d7800eec-6455-44f3-8720-2d35983e2c89 – 21 Nov 2022 R

Many thanks in advance,

Hi,

You can add this code in /Forms/Contact.js

In Import
import FormControl from '@material-ui/core/FormControl';
import Select from '@material-ui/core/Select';
import InputLabel from '@material-ui/core/InputLabel';
Inside ValidatorForm component
<FormControl className={classes.formControl}>
        <InputLabel id="demo-simple-select-label">Age</InputLabel>
        <Select
          labelId="demo-simple-select-label" 
          id="demo-simple-select" 
          value={age}
          onChange={handleChange}
        >
          <MenuItem value={10}>Ten</MenuItem>
          <MenuItem value={20}>Twenty</MenuItem>
          <MenuItem value={30}>Thirty</MenuItem>
        </Select>
      </FormControl>

Regards.

Hmm… You lost me on this one. The files you mention here are only available from the eact package while I’m using the html package… In the same time, I’m unable to find anywhere the code to handle the from send…

Hi,

For form styling html version this template use materializecss. Here’s for selection styling https://materializecss.com/select.html

<div class="input-field col s12">
    <select>
      <option value="" disabled selected>Choose your option</option>
      <option value="1">Option 1</option>
      <option value="2">Option 2</option>
      <option value="3">Option 3</option>
    </select>
    <label>Materialize Select</label>
  </div>

And for form submission, this template only handle front-end side, you need a backend like php mysql, java, etc to handle it. Here’s the reference https://code.tutsplus.com/tutorials/create-a-php-login-form--cms-33261

Regards.

Hi, this is Liveen,

We purchased Oiron’s React HTML Landing Page Collection, which has proven to be beneficial to us, but these templates are built with Next.js and typescript, and while writing the small amount of code we got the errors. If it is available in pure React.js without typescript and Next.js, we will pay the extra amount for it because it is important for us as of now. We have purchased it for our organization, and they will fire on us. We have to deliver it on time.

If this template is available in pure React without typescript and next, please let me know.

Template purchased data: 22 Nov 2022 Purchased user: Narendra1235!

Hi,

Sorry I only have next.js and html jquery also vue with nuxt.js in differemt item.

Regards.

We had so many errors while writing small pieces of code because this project was integrated with the next.JS and typescript Our team is willing to move the Javascript, what can we change next. js to JavaScript Is there a shortcut I should remove next.js and typescript

Thanks & Regards M.LIVEEN web developer liveen@oxyloans.com

Hi this template has a basic version with html css jquery in oiron-html folder, you can try that.

Thank You so much for response

Hi, this is Liveen,

We purchased Oiron’s React HTML Landing Page Collection, which has proven to be beneficial to us, but these templates are built with Next.js and typescript, and while writing the small amount of code we got the errors. If it is available in pure React.js without typescript and Next.js, we will pay the extra amount for it because it is important for us as of now. We have purchased it for our organization, and they will fire on us. We have to deliver it on time.

If this template is available in pure React without typescript and next, please let me know.

Template purchased data: 22 Nov 2022 Purchased user: Narendra1235!

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey